The most common form of secondary storage is ________________.

a. a disk drive
b. the CPU
c. RAM
d. all of the above


a. a disk drive

Computer Science & Information Technology

You might also like to view...

Today's hard disk drives have access times of about ____ milliseconds.

A. 20 B. 10 C. 9 D. 7

Computer Science & Information Technology

Comments help collaborators and reviewers ________ when more than one person is involved in the editing or review process

A) remain anonymous B) act professionally C) communicate D) behave unprofessionally

Computer Science & Information Technology

To change the data source of a chart use the Select Source dialog box from the Dialog\Numbers button

Indicate whether the statement is true or false

Computer Science & Information Technology

Consider the following definition of the recursive function mystery.int mystery(int first, int last){  if (first > last)     return 0;  else if (first == last)     return first;  else     return first + mystery(first + 1, last - 1);}What is the output of the following statement?cout

A. 13 B. 21 C. 40 D. 42

Computer Science & Information Technology