Answer Posted / nashiinformaticssolutions
In Java, a thread can exist in any of the following states. The states are as follows:
New: When a new thread is first created, it is always in the new state. For a thread in the new state, the function hasn't begun to execute because it hasn't been performed yet.
Active: When a thread invokes the start() method, it moves from the new state to the active state. The active state contains both the running state and the runnable state.
Blocked or Waiting: When a thread is not active for a period of time (but not forever), it is either in the blocked state or the waiting state.
Timed waiting is what happens when we apply the sleep() technique to a certain thread.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Will set allow duplicates in java?
What is the significance of continue jump statement? Explain with an example.
What is the difference between multiple processes and multiple threads?
What are the benefits of immutable objects?
Is hashset ordered java?
What is the equal sign?
What is difference in between java class and bean?
Explain about OOPS concepts and fundamentals.
What are the string methods in java?
What is the difference between the paint() and repaint() methods?
If an application has multiple classes in it, is it okay to have a main method in more than one class?
String class is defined under which package in java?
Explain the importance of throws keyword in java?
How do you remove an object from an arraylist in java?
How to access arraylist elements in java?