Difficulty: Easy
Correct Answer: FORMAT /F:size
Explanation:
Introduction / Context:
The FORMAT utility prepares a disk for use by creating the file system structures. Several switches allow the user to tailor capacity and labeling, especially when formatting floppy disks of varying sizes or densities.
Given Data / Assumptions:
Concept / Approach:
FORMAT /F:size sets the capacity directly (e.g., /F:1440 or /F:1.44) depending on DOS version syntax. /N and /T specify sectors-per-track and number of tracks (low-level geometry). /V assigns a volume label. Therefore, if the goal is to declare the disk size in one parameter, /F is appropriate.
Step-by-Step Solution:
Verification / Alternative check:
Run “FORMAT /?” to view supported parameters for your DOS version; observe examples showing /F values for common capacities.
Why Other Options Are Wrong:
/N, /T: control sectors/track and tracks; they do not directly express total capacity. /V: only sets volume label. None: incorrect because /F exists for capacity selection.
Common Pitfalls:
Using /N and /T without matching media; mis-typing size units in older DOS variants; accidentally formatting the wrong drive letter.
Final Answer:
FORMAT /F:size
Discussion & Comments