Difficulty: Easy
Correct Answer: ROM BIOS
Explanation:
Introduction / Context:
When you power on a traditional PC, the processor begins executing a tiny bootstrap program that initializes hardware, performs self-tests, and eventually loads an operating system. Identifying where those very first instructions live is core knowledge for system builders and troubleshooters.
Given Data / Assumptions:
Concept / Approach:
On legacy PCs, the CPU starts at a predefined reset vector address mapped to firmware stored in read-only memory (ROM). This firmware is commonly called the BIOS (Basic Input/Output System) or, on modern systems, UEFI firmware. The BIOS runs power-on self-test (POST), configures basic devices, and locates a bootable device.
Step-by-Step Solution:
Verification / Alternative check:
Configuration screens accessed via firmware keys (for example, Del or F2) appear before any OS files are read, confirming that initial control resides in ROM firmware.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
ROM BIOS.
Discussion & Comments