Multiple choice technology platforms and products

What is context switching?

  1. A process terminating.

  2. A process starting execution.

  3. Processor switches execution control from one process to another.

  4. Creation of a new thread.

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

Context switching is the process of saving the state of a currently running process or thread and loading the state of another. This allows the CPU to share its execution time among multiple processes, creating the illusion of concurrent execution. It is a fundamental concept in multitasking operating systems.