Difficulty: Easy
Correct Answer: RESTORE A: . /M
Explanation:
Introduction / Context:DOS backup/restore workflows rely on switches to control what gets restored. Efficient incremental recovery uses a switch that returns only files changed since the last backup. Knowing these switches speeds up recovery and reduces wear on legacy media.
Given Data / Assumptions:
Concept / Approach:
Different RESTORE switches target different behaviors. The key is recognizing that /M stands for “Modified since last backup”. Other switches (like /S for subdirectories, /N or /L) do not express this incremental-restore requirement.
Step-by-Step Solution:
Understand requirement: restore only changed files.Map requirement to switch meanings: /M equals Modified since last backup.Construct valid command: RESTORE A: . /M to target all files by pattern and filter on modification status.Confirm no other switch matches this behavior.Verification / Alternative check:
Contemporary DOS references document /M as “restores files modified since the last backup.” This aligns with incremental strategies common in tape and floppy workflows.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing backup switches between BACKUP and RESTORE; forgetting wildcard patterns; mixing up /S with selective criteria. Always confirm syntax for your DOS version.
Final Answer:
RESTORE A: . /M
Discussion & Comments