Which of the following is a characteristic of a microkernel? MCQ with Answer and Explanation

Which of the following is a characteristic of a microkernel?
A. It is less modular than monolithic
B. Only essential services like IPC and memory management are in kernel space
C. It is faster than monolithic
D. All services are in kernel space
Answer: Option B
Solution (By JKExamLibrary)
Microkernel keeps only minimal services in kernel mode, with drivers and file systems in user space, increasing modularity.

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
What is the purpose of a 'System Call' in an operating system environment?
A. To clean up invalid registry keys from secondary storage hardware.
B. To let a remote computer access the local area network configuration.
C. To provide a programmatic interface for user applications to request privileged services from the kernel.
D. To dial a toll-free technical support number automatically.

Correct Answer: Option C


Explanation:
System calls act as the fundamental interface between a running application program and the privileged actions performed by the operating system kernel.

This question belongs to: Computer Operating Systems
Question #2 Report Error
Which of the following is a feature of a preemptive multitasking system?
A. Only one process runs at a time
B. Processes must voluntarily yield CPU
C. No process can be interrupted once started
D. The OS can interrupt a process to give CPU time to another

Correct Answer: Option D


Explanation:
Preemptive multitasking allows the OS to forcibly preempt a running process to allocate CPU to another, ensuring responsiveness.

This question belongs to: Computer Operating Systems
Question #3 Report Error
Which Linux utility command can be used to display system disk space utilization across all mounted partitions?
A. df
B. free
C. du
D. top

Correct Answer: Option A


Explanation:
The 'df' (disk free) command displays the amount of available and used disk space on file systems mounted to the Linux machine.

This question belongs to: Computer Operating Systems