One or more adjacent sectors form a _________, the smallest amount of disk space that can be used to hold a file.
A. path
B. cylinder
C. cluster
D. track

Fill in the blank(s) with the appropriate word(s).

cluster

Rationale: On most computer systems, the smallest amount of space on a hard disk that can be used to store a file is a cluster—one or more adjacent sectors. Because of this, everything stored on a hard disk always takes up at least one cluster. See 2-4: Storage Systems

Computer Science & Information Technology

You might also like to view...

In the statement

list[5] = 8.9; 5 is the: a) size b) element c) subscript d) variable

Computer Science & Information Technology

Answer the following statements true (T) or false (F)

1. It is legal to replace the prototype double totalCost(int numberParam, double priceParam); with the more terse, alternate form double totalCost(int, double); 2. In C++ Boolean value are represented only with the int values 0 for false and 1 for true. 3. Extensive use of global variables is a satisfactory replacement for the difficulties of parameter passing with functions. 4. A variable declared outside any function is said to be a local variable.

Computer Science & Information Technology