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 |
What is aop(assepct oriented programing)?
What is the difference between ear, jar and war file?
What is the difference between the session.update() method and the session.lock() method?
whats is mean by filter?
What is multi-tasking? Types?
How task's priority is used in scheduling?
Explain the steps in details to load the server object dynamically?
Explain about local interfaces.
In a multitiered application which tier is the browser in?
if i know the lenght of collection in hand, should I use Array or Arraylist? justify
What will happens, when a thread cannot acquire a lock on an object?
Name the method to find, if a thread is active or not?