Thread Life Cycle
Q1.
After creating a thread using the Thread class, but before calling start(), which state is it in?
Q2.
When a thread calls join() on another thread, what happens?
Q3.
Which thread state is entered when sleep(1000) is invoked?
Q4.
Which of the following is NOT a valid state in the Java Thread lifecycle?
Q5.
Once a thread has reached the Terminated state, what happens if we call start() again?