Difficulty: Easy
Correct Answer: DISKCOMP
Explanation:
Introduction / Context:
DOS provides several floppy-disk utilities. Two that are often confused are DISKCOPY and DISKCOMP. Understanding the difference between copying and comparing is essential when verifying backups, diagnosing media issues, or validating duplication work on legacy systems.
Given Data / Assumptions:
Concept / Approach:
DISKCOMP compares the contents of two floppy disks and reports any differences. DISKCOPY, by contrast, creates a duplicate of a disk (source → destination). FORMAT prepares a disk and does not compare contents.
Step-by-Step Solution:
Insert source disk in drive A: and target disk in drive B:.Run DISKCOMP A: B: to compare sector contents.Review output for messages indicating identical disks or listing sectors that differ.
Verification / Alternative check:
To ensure a good clone, first use DISKCOPY A: B: and then run DISKCOMP A: B: to verify equality, especially when data integrity is critical.
Why Other Options Are Wrong:
DISKCOPY (Options A and C variants) copies; it does not compare.FORMAT A: B: (Option D) is invalid syntax and unrelated to comparison.
Common Pitfalls:
Final Answer:
DISKCOMP
Discussion & Comments