Answer Posted / guru
When an object is created using Thread class,it is in the
new state, when the start method is called the object goes
into the runnable state from where the scheduler picks up
and starts executing. If that process requires any resource
it is picked and put to the blocked state and when the
process finished that thread is in dead state.
states:
1 new
2 runnable
3 running
4 blocked
5 dead
| Is This Answer Correct ? | 15 Yes | 1 No |
Post New Answer View All Answers
How does arraylist size increase in java?
Does unicode support all languages?
What is the purpose of a transient variable?
What is the use of keywords in java?
What is a loop java?
does java support pointers?
What is the main purpose of java?
Does java support multiple inheritances?
can rmi and corba based applications interact ?
What is use of set in java?
How do you find the maximum number from an array without comparing and sorting?
Can we declare the static variables and methods in an abstract class?
Explain the importance of import keyword in java?
What is the benefit of inner / nested classes ?
What are the major advantages of internal iteration over external iteration?