Complete the sentence to define context switching.
Context switching is the process where the CPU switches from executing one [1] to another.
Context switching involves switching the CPU from one process to another to allow multitasking.
Complete the sentence about what is saved during context switching.
During context switching, the CPU saves the [1] of the current process so it can resume later.The CPU saves the state of the current process, including registers and program counter, to resume it later.
Fix the error in the sentence about context switching overhead.
Context switching is a fast operation with no [1] on system performance.
Context switching causes overhead, which means it uses CPU time and can slow down system performance.
Fill both blanks to describe what the CPU saves and loads during context switching.
The CPU saves the [1] of the current process and loads the [2] of the next process to run.
The CPU saves the state of the current process and loads the state of the next process to continue execution.
Fill all three blanks to complete the explanation of context switching steps.
First, the CPU saves the [1] of the current process, then it updates the [2] to point to the next process, and finally it loads the [3] of the next process.
Context switching involves saving the state of the current process, updating the program counter to the next process, and loading the state of the next process.