Multiple choice .net c-sharp

A Thread is:

  1. an object that allows computer multitasking

  2. an object that wraps itself with other threads

  3. a deprecated object that is no longer used

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

A Thread enables concurrent execution (multitasking) by running different code paths simultaneously. Option B is nonsensical. Option C is false - threads are actively used in modern programming for parallel processing.