InterviewSolution
Saved Bookmarks
| 1. |
What Does The Start() Method Of Thread Do? |
|
Answer» The thread's start() method PUTS the thread in ready STATE and MAKES the thread eligible to RUN. start() method automatically calls the run () method. The thread's start() method puts the thread in ready state and makes the thread eligible to run. start() method automatically calls the run () method. |
|