1D0-61C · Question #29
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 a drive reorganizes fragmented files so the read head can access them in fewer, more efficient movements - and defrag c: -w is the correct Windows command-line syntax to do this, where -w triggers a full defragmentation pass. This directly improves file access…
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
(50 responses)- A4% (2)
- B2% (1)
- C2% (1)
- D92% (46)
Explanation
Defragmenting a drive reorganizes fragmented files so the read head can access them in fewer, more efficient movements - and defrag c: -w is the correct Windows command-line syntax to do this, where -w triggers a full defragmentation pass. This directly improves file access performance, making D the right answer.
Why the distractors fail:
- A & B are hardware upgrades, not maintenance tasks - the question specifically asks about maintenance. Swapping drive types doesn't maintain anything; it replaces hardware.
- C uses
fdisk, which is a disk partitioning utility, not a defragmentation tool. Running it with-d -won a Windows path likec:/is also syntactically invalid and could be destructive.
Memory tip: The correct command literally spells out the action - defrag for defragmentation. If the command name doesn't match the task, it's almost certainly wrong. On exams, watch for trick answers that mix real tools (fdisk) with the wrong context.
Topics
Community Discussion
No community discussion yet for this question.