What is the initial state, When a thread is created and
started?

Answers were Sorted based on User's Feedback



What is the initial state, When a thread is created and started?..

Answer / rajesh

Initial state of the thread is ready state. When you create
an object of the class either implementing the runnable
interface or extending Thread class, thread is created.

Thread is start when developer calls;

Thread.start() method

Is This Answer Correct ?    10 Yes 3 No

What is the initial state, When a thread is created and started?..

Answer / guest

ready() state

Is This Answer Correct ?    7 Yes 4 No

What is the initial state, When a thread is created and started?..

Answer / dharmender

the initial state of a thread is New, when a thread instance is just created but start method is not yet invoked on it.
Once start method is called upon then it enters the Runnable state.

Is This Answer Correct ?    3 Yes 2 No

Post New Answer

More Advanced Java Interview Questions

What is checkpoint? How to create checkpoints in our java projects?

1 Answers   ABC,


What is deadlock?

2 Answers  


How substring() method of string class create memory leaks?

0 Answers  


JMS based on what technology?

1 Answers  


What are the high-level thread states?

1 Answers  






How to pass parameters in RMI?

0 Answers  


what is stringBuffer and StringBuilder?

3 Answers  


Howmany interfaces are used in RMI?

2 Answers  


how i secure my site with the https protocol.what are the steps?

0 Answers  


is servlet,struts are threadsafe or not.please telme correct answer

1 Answers   Microsoft,


What are the different class loaders used by jvm?

0 Answers  


what is catalina in tomcat server.

11 Answers   IBM,


Categories