A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

Java program to sleep program execution for specified milliseconds
Q:

Java program to sleep program execution for specified milliseconds

0

Java program to sleep program execution for specified milliseconds

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

In this program, we will sleep program execution 4 specified milliseconds using Thread.Sleep() method.

Program/Source Code:

The source code to sleep program execution for specified milliseconds is given below. The given program is compiled and executed successfully.

// Java program to sleep program 
// for specified milliseconds

public class Main {
  public static void main(String[] args) {
    try {
      System.out.println("Hello");
      Thread.sleep(1000);
      System.out.println("Hii");
    } catch (Exception e) {
      System.out.println(e);
    }
  }
}

Output:

Hello
Hii

Explanation:

In the above program, we created a public class Main. It contains a static method main().

The main() method is an entry point for the program. Here, we printed the "Hello" message. Then we slept program execution for 1000 milliseconds. After that, we printed the "Hii" message.

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now