Difficulty: Easy
Correct Answer: FORMAT command
Explanation:
Introduction / Context:
Preparing a blank floppy for use requires creating the file system and logical structures that the operating system understands. In DOS, this operation is triggered by a specific utility command.
Given Data / Assumptions:
Concept / Approach:
The DOS FORMAT
command performs high-level formatting, building the boot sector, FAT(s), root directory, and marking logical sector structures. On some hardware it also performs low-level formatting (older controllers), but generally DOS FORMAT prepares the media with the proper file system layout. VER
displays DOS version; CHKDSK
checks the disk and reports status; there is no separate FAT
command to format disks.
Step-by-Step Solution:
Verification / Alternative check:
After running FORMAT, DOS reports capacity and allocation unit size; directory listing shows an empty, initialized file system. CHKDSK thereafter reports filesystem details instead of “unformatted”.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing low-level vs. high-level formatting; accidentally formatting the wrong drive; forgetting the /S switch or equivalent to make a disk bootable (legacy behavior).
Final Answer:
FORMAT command
Discussion & Comments