Multiple choice .net c-sharp

When a thread returns from a WaitSleepJoin or Suspended state it returns to the:

  1. Unstarted state

  2. Stopped state

  3. Started state (now considering a part of the running state)

  4. Resume state

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

When a thread wakes from WaitSleepJoin or Suspended, it returns to the Started state, which is considered part of the running state (ready to execute). It does not go back to Unstarted or Stopped. Resume is not a thread state in this context.