WBJECA 2025 — Computer PYQ
WBJECA | Computer | 2025________ contains firmware that boots the system.
Choose the correct answer:
- A.
ROM
(Correct Answer) - B.
RAM
- C.
Cache
- D.
DMA controller
ROM
Explanation
The process of starting a computer is known as "booting." When a computer is powered on, the CPU requires immediate instructions to begin its initialization sequence. These instructions cannot be stored in RAM because RAM is volatile (it loses all data when power is off).
ROM (Read-Only Memory): This non-volatile memory chip holds the firmware—often referred to as the BIOS (Basic Input/Output System) or UEFI. This firmware contains the initial code necessary to test hardware, detect peripherals, and eventually load the Operating System (OS) from the storage drive into memory.
We can mathematically describe the memory characteristics as follows:
Volatility={Non-volatileVolatileamp;if ROM (contains boot firmware)amp;if RAM (temporary data storage)
The boot process logic can be simplified as:
Boot Start=Execute Code(ROM)→Hardware Self-Test→Load OS
Because ROM retains its information without power, it is the only viable location for the essential instructions that start the machine.

