Difficulty: Easy
Correct Answer: MEM /C
Explanation:
Introduction / Context:
Classic DOS systems load device drivers and TSRs into conventional or upper memory. Unloading requires reverse order (last in, first out). The right command reveals what is resident and in which order.
Given Data / Assumptions:
Concept / Approach:
MEM with the /C (Modules) switch lists memory allocation by program name, showing TSRs and drivers in the order they were loaded, along with sizes and memory regions. This is the canonical way to plan safe unloading or reconfiguration.
Step-by-Step Solution:
Verification / Alternative check:
Comparing MEM /C output before and after changing CONFIG.SYS/AUTOEXEC.BAT lines shows how load order changes. Third-party tools (e.g., QEMM) corroborate module mapping.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing /C with /D (which shows memory in different formats) and assuming TSRs can always be unloaded safely; many cannot.
Final Answer:
MEM /C
Discussion & Comments