Difficulty: Easy
Correct Answer: COPY
Explanation:
Introduction / Context:
Classic MS-DOS environments rely on simple commands to manage files. Knowing which command moves an individual file versus cloning an entire disk prevents accidental data loss and speeds up routine administration.
Given Data / Assumptions:
Concept / Approach:
For single-file operations, the COPY command copies the selected file(s) to a target path. DISKCOPY duplicates an entire disk, sector by sector. RENAME only changes a file’s name, and FORMAT prepares a disk with a new filesystem, erasing previous data. Therefore, COPY is the correct and safe choice for an individual file transfer.
Step-by-Step Solution:
Verification / Alternative check:
Attempting DISKCOPY would ask for source/destination diskettes and copy the entire disk, not a single file—confirming it is unsuitable for the requirement.
Why Other Options Are Wrong:
Common Pitfalls:
Using wildcards unintentionally (e.g., COPY *.DOC) and overwriting files without confirming the destination path.
Final Answer:
COPY
Discussion & Comments