Difficulty: Easy
Correct Answer: COMMAND.COM, IO.SYS, MSDOS.SYS
Explanation:
Introduction / Context:
Legacy DOS boot relies on a small set of critical system files. Technicians often need to know the minimum files for a bootable disk, especially when repairing corrupted systems or creating startup media.
Given Data / Assumptions:
Concept / Approach:
The BIOS loads the boot sector, which then loads the DOS system files. IO.SYS initializes hardware interfaces, MSDOS.SYS provides the DOS kernel services, and COMMAND.COM is the command interpreter. If any are missing or corrupted, boot typically fails or drops to a minimal shell.
Step-by-Step Solution:
Verification / Alternative check:
Creating a bootable floppy with SYS A: places IO.SYS, MSDOS.SYS, and COMMAND.COM in the root, proving these three are required at startup.
Why Other Options Are Wrong:
Common Pitfalls:
Assuming CONFIG.SYS or AUTOEXEC.BAT are required for boot; they are processed after the core files load. Also, mixing PC-DOS names and MS-DOS names across versions.
Final Answer:
COMMAND.COM, IO.SYS, MSDOS.SYS
Discussion & Comments