Which of the following best describes disk defragmentation?

A. Reorganizing the hard disk so that files are stored in contiguous sectors.
B. Removing unnecessary files.
C. Compressing backup and other files to increase disk storage.
D. Installing partitions on the hard disk in order to run separate operating systems on the same computer.

Answer: A

Computer Science & Information Technology

You might also like to view...

The default location for storing templates is the ________ folder

A) Slide B) Master C) Presentation D) Templates

Computer Science & Information Technology

Suppose you declare int value = 99, to write it to a binary file, use ________.

a. binaryio.write(reinterpret_cast(value)); b. binaryio.write(reinterpret_cast(&value)); c. binaryio.write(value); d. binaryio.write(reinterpret_cast(value), sizeof(value)); e. binaryio.write(reinterpret_cast(&value), sizeof(value));

Computer Science & Information Technology