Complete the sentence to describe where user applications run.
User applications run in [1] mode.
User applications run in user mode, which has limited privileges to protect the system.
Complete the sentence to describe where the operating system core runs.
The operating system core runs in [1] mode.
The operating system core runs in kernel mode, which has full access to hardware and system resources.
Fix the error in the sentence describing privilege levels.
Kernel mode has [1] privileges than user mode.Kernel mode has more privileges than user mode, allowing it to access all system resources.
Fill both blanks to complete the sentence about mode switching.
When a user program needs to access hardware, it makes a [1] to switch from [2] mode to kernel mode.
A system call is used to switch from user mode to kernel mode to safely access hardware.
Fill all three blanks to complete the dictionary comprehension about modes.
modes = { [1]: '[2] mode' for [3] in ['user', 'kernel'] }This dictionary comprehension creates a dictionary where each key is the mode name and the value is the mode name followed by ' mode'.