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
How to sort list of list in java?
What environment variables do I need to set on my machine in order to be able to run java programs?
What is __ init __ functions?
What is the difference between double and float variables in java?
What is the base class of all exception classes?
What do you know about the garbate collector?
Hi friends am new to java. I read jar file means collection of java files. For executing struts application what are the necessary jar files. " struts.jar " file contains what. can u explain
What is object class in java?
What is a predicate method?
What is super keyword explain with example?
Is vector ordered in java?
Name four container classes.
what are the disadvantages of indexes in oracle?
Can you inherit from an abstract class java?
Can a constructor be private and how are this() and super() method used with constructor?