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

whats is stored procedure,joins

1 Answers   Photon,


Explain Object Serialization and it can be used?

3 Answers   Infosys,


What are various types of class loaders used by jvm?

0 Answers  


What is the purpose of the wait(), notify(), and notifyall() methods?

0 Answers  


Why are component architectures useful?

0 Answers  






Tell me about Firewalls in RMI?

0 Answers  


Can you give me a simple example of using the requiredif validator rule?

0 Answers  


what is the diffrence between banking and insurance domain?

2 Answers  


Can I use javascript to submit a form?

0 Answers  


What is multithread synchronizing ?

4 Answers   Sun Microsystems,


Name the method to find, if a thread is active or not?

2 Answers  


Is multiple try block is possible in single java Application......

3 Answers  


Categories