Difficulty: Easy
Correct Answer: size (heads, cylinders, sectors)
Explanation:
Introduction / Context:Older PCs required manual entry of hard-disk geometry in CMOS setup so the BIOS could address the drive correctly at boot. Understanding which parameters belong in CMOS helps when working with legacy hardware.
Given Data / Assumptions:
Concept / Approach:
CMOS setup records drive geometry: number of cylinders, heads, sectors per track, and sometimes landing zone and translation mode. These values allow BIOS INT 13h routines to read/write sectors during POST/boot.
Step-by-Step Solution:
Enter BIOS: define drive type or user type with cylinders, heads, sectors.Save to CMOS so parameters persist across reboots with battery power.During boot, BIOS uses these values to access the MBR and load OS.Verification / Alternative check:
Incorrect geometry prevents OS boot or causes data corruption. Autodetect routines in later BIOS versions populate CMOS with LBA-translated values automatically.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing controller settings with disk geometry; removing CMOS battery resets parameters leading to boot failures on legacy systems.
Final Answer:
size (heads, cylinders, sectors)
Discussion & Comments