Complete the sentence to describe a monolithic kernel.
A monolithic kernel runs all services in the [1] space.
Monolithic kernels run all core services in the kernel space for efficiency.
Complete the sentence to describe microkernel design.
In a microkernel, most services run in [1] space outside the kernel.
Microkernels keep the kernel small and run services in user space for safety.
Fix the error in the sentence about hybrid kernels.
A hybrid kernel combines features of monolithic and [1] kernels.
Hybrid kernels mix monolithic and microkernel designs to balance performance and modularity.
Fill both blanks to complete the comparison between monolithic and microkernels.
Monolithic kernels run services in [1] space, while microkernels run services in [2] space.
Monolithic kernels run services in kernel space; microkernels run them in user space for modularity.
Fill all three blanks to complete the dictionary describing kernel types.
kernel_types = {"monolithic": "runs all services in [1] space", "microkernel": "services run in [2] space", "hybrid": "combines [3] and microkernel"}This dictionary summarizes that monolithic kernels run all services in kernel space, microkernels run services in user space, and hybrids combine monolithic and microkernel features.