Multiple choice

Which one of the following is not a correct state for life cycle of a thread?

  1. Ready

  2. Blocked

  3. Return

  4. Dead

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The correct state sequence for life cycle of a thread is:

  1. New
  2. Ready
  3. Running
  4. Blocked
  5. Dead There is no return state.