Multiple choice .net c-sharp When a thread returns from a WaitSleepJoin or Suspended state it returns to the: Unstarted state Stopped state Started state (now considering a part of the running state) 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.