Difficulty: Easy
Correct Answer: it's a CD-ROM DOS driver
Explanation:
Introduction / Context:
Legacy DOS systems required separate drivers to support devices. CD-ROM drives, in particular, needed a pair of drivers: a low-level hardware driver loaded in CONFIG.SYS and a higher-level redirector to provide access via drive letters. MSCDEX.EXE is central to this setup in classic DOS configurations.
Given Data / Assumptions:
Concept / Approach:
MSCDEX (Microsoft CD-ROM Extensions) is a DOS program that enables CD-ROM file system access by interfacing with the low-level device driver and mapping the CD as a DOS drive letter (e.g., D:). It is not a SCSI driver (though many CD-ROMs used SCSI or ATAPI), nor does it configure hard disks or the BIOS.
Step-by-Step Solution:
Verification / Alternative check:
Historical DOS manuals and setup guides show AUTOEXEC.BAT invoking MSCDEX to assign drive letters for CD-ROMs.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
it's a CD-ROM DOS driver.
Discussion & Comments