What is the initial state, When a thread is created and
started?
Answers were Sorted based on User's Feedback
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 |
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 |
Do I need to import javlang package any time? Why ?
Why are my checkboxes not being set from on to off?
Which container method is used to cause a container to be laid out and redisplayed?
What must a class do to implement an interface?
what are memory considerations of jsp compares to other web components?
Explain the stub's and skeleton's functionality?
What are local interfaces? Describe.
What is the purpose of the notify() method?
What are skeletons and stubs and how they are generated?
To identify IDL language what mapping mechanism is used?
Is multiple try block is possible in single java Application......
When a thread terminates its processing, it enters into what state?