2026/2027 – Complete Exam-Style Questions with Detailed Rationales | 100% Verified
| Pass Guaranteed – A+ Graded
Section A: Operating System Fundamentals & Architecture (8
Questions)
Q1: A user launches a web browser, a word processor, and a media player
simultaneously on a laptop. The software component that manages hardware
resources, schedules these programs, and ensures they do not interfere with one
another is the:
A. The BIOS firmware
B. The compiler toolchain
C. The operating system [CORRECT]
D. The application software suite
Correct Answer: C
Rationale: The operating system manages hardware resources and provides an
environment for application execution. Option A only handles initial boot, B translates
source code to machine code, and D refers to the applications themselves, not the
manager.
Q2: A computer science textbook describes the four main components of a computer
system as the hardware that performs computation, the operating system that controls
execution, the application programs that solve user problems, and the users who
interact with the system. These four components are:
,A. CPU, memory, disk, and network
B. Hardware, operating system, application programs, and users [CORRECT]
C. Kernel, shell, drivers, and utilities
D. Input devices, processor, output devices, and storage
Correct Answer: B
Rationale: The four main components are hardware, OS, application programs, and
users. Option A lists hardware subcomponents only, C lists OS internal structures, and D
describes a simplified computer model rather than system components.
Q3: A university IT department requires computers that are easy for students to use, run
student programs efficiently, use CPU and memory optimally, and prevent unauthorized
access. These requirements align with:
A. The four layers of the TCP/IP model
B. The functions of the CPU only
C. The four main goals of an operating system [CORRECT]
D. The principles of network routing protocols
Correct Answer: C
Rationale: The four main OS goals are to execute user programs, provide convenience,
use hardware efficiently, and ensure security/stability. Options A, B, and D describe
unrelated networking or hardware concepts.
, Q4: The Linux kernel contains device drivers, file system code, memory management,
and scheduling all running in a single shared address space. A bug in a network driver
can crash the entire system. This architecture is characteristic of a:
A. Microkernel
B. Monolithic kernel [CORRECT]
C. Hybrid kernel
D. Exokernel
Correct Answer: B
Rationale: A monolithic kernel places all OS services in one address space for
performance, but a failure in any component can crash the system. Option A isolates
services in user space, C combines approaches, and D provides minimal hardware
abstraction.
Q5: The MINIX operating system keeps only essential mechanisms such as
interprocess communication and scheduling in kernel space, while moving device
drivers and file systems to user-space processes. If a driver fails, the kernel remains
stable. This design is a:
A. Monolithic kernel
B. Hybrid kernel
C. Microkernel [CORRECT]
D. Layered kernel
Correct Answer: C