Multiple choice

A ______ is a lightweight process with a reduced state.

  1. task

  2. thread

  3. programme

  4. none of these

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

A thread is a lightweight process within a program - it shares the same resources (code, data, files) with other threads but has its own program counter, stack, and registers. Threads enable parallel execution within a single process.