1D0-610 · Question #4
Which of the following computer system maintenance tasks can help improve file access performance?
The correct answer is D. Defragment the drive using the following command: defrag c: -w. Defragmenting with defrag c: -w is correct because it uses the actual Windows defragmentation utility, which consolidates fragmented files on disk so the read heads travel shorter distances to access them - directly improving file access performance. The -w flag forces a full…
Question
Which of the following computer system maintenance tasks can help improve file access performance?
Options
- AUse a SCSI drive instead of a SATA drive
- BUse a SATA drive instead of an EIDE drive
- CDefragment the drive using the following command: fdisk -d -w c:/
- DDefragment the drive using the following command: defrag c: -w
How the community answered
(56 responses)- A5% (3)
- B2% (1)
- C2% (1)
- D91% (51)
Explanation
Defragmenting with defrag c: -w is correct because it uses the actual Windows defragmentation utility, which consolidates fragmented files on disk so the read heads travel shorter distances to access them - directly improving file access performance. The -w flag forces a full defragmentation rather than a partial one.
Why the distractors fail:
- A & B describe hardware upgrades (swapping drive interfaces), not maintenance tasks - and regardless, hardware swaps don't qualify as "system maintenance."
- C is dangerous nonsense:
fdiskis a partition management tool, not a defrag utility. Runningfdisk -dwould attempt to delete a partition, not defragment anything.
Memory tip: The correct command name literally spells out the task - defrag for defragment. If the command name doesn't match the job (like fdisk for defragging), it's wrong.
Topics
Community Discussion
No community discussion yet for this question.