Difficulty: Easy
Correct Answer: MSD
Explanation:
Introduction / Context:When diagnosing legacy PCs running MS-DOS, technicians often need to verify which serial (COM) ports the system hardware and BIOS report. MS-DOS provided a small diagnostic program that enumerates hardware, memory, IRQs, and ports, which is especially useful before installing serial-dependent devices like modems or mice.
Given Data / Assumptions:
Concept / Approach:The Microsoft Diagnostics utility, invoked as MSD, displays a menu-driven report including CPU details, memory map, video, IRQ/DMA assignments, and I/O ports. Under the I/O or System Information sections, it lists COM and LPT ports detected via BIOS data structures and direct probing, making it the correct built-in choice for serial port discovery.
Step-by-Step Solution:
1) Boot to DOS and navigate to the directory containing MSD (commonly C:\DOS).2) Run: MSD and press Enter.3) Open the I/O Ports or System menu to view COM1/COM2 presence and base addresses (for example, 3F8h, 2F8h).4) Use the information to configure software (for example, selecting COM1 at 3F8h, IRQ4).Verification / Alternative check:Cross-check MSD’s report with CONFIG.SYS, AUTOEXEC.BAT, or device manager utilities to confirm consistency. Testing a serial mouse or modem on the listed port further verifies functionality.
Why Other Options Are Wrong:
Common Pitfalls:Assuming the presence of a COM port guarantees a working device; cabling, IRQ conflicts, or disabled BIOS ports can still block operation.
Final Answer:MSD
Discussion & Comments