What type of kernel configuration runs basic scheduling routines in kernel space but offloads device drivers and file systems to user space to maximize stability? MCQ with Answer and Explanation

What type of kernel configuration runs basic scheduling routines in kernel space but offloads device drivers and file systems to user space to maximize stability?
A. Microkernel
B. Exokernel Layout
C. Hybrid Architecture
D. Monolithic Kernel
Answer: Option A
Solution (By JKExamLibrary)
Microkernels improve system resilience by restricting kernel space to essential primitives, isolating driver crashes from bringing down the core OS.

This question belongs to: Computer Operating Systems

Discuss this Question (0)

No comments yet. Be the first to start the discussion!

Practice More Operating Systems Questions

Question #1 Report Error
In Windows, the 'Diskpart' command can be scripted using:
A. A text file with commands and 'diskpart /s script.txt'
B. All of the above
C. Batch files
D. PowerShell

Correct Answer: Option B


Explanation:
diskpart supports scripts via /s, and can be used within PowerShell or batch files for automation.

This question belongs to: Computer Operating Systems
Question #2 Report Error
Which Windows command-line utility provides detailed configuration information about the system, including OS version, processor type, and physical RAM stats?
A. ping
B. ipconfig
C. tasklist
D. systeminfo

Correct Answer: Option D


Explanation:
The 'systeminfo' command line tool queries the local machine configuration and displays comprehensive diagnostic and configuration metadata.

This question belongs to: Computer Operating Systems
Question #3 Report Error
Which Linux command is used to display the current user's group memberships?
A. groups
B. Both A and B
C. id -Gn
D. who

Correct Answer: Option B


Explanation:
groups shows all groups for the current user; id -Gn also lists group names.

This question belongs to: Computer Operating Systems