Which of the following is an example of secondary storage devices?

a) hard drive
b) keyboard
c) monitor
d) mouse


a) hard drive

Computer Science & Information Technology

You might also like to view...

How many digits are used in the binary number system?

What will be an ideal response?

Computer Science & Information Technology

How many times is the following code invoked by the call recursive(4)?

``` void recursive( int i ) { using namespace std; if (i < 8) { cout << i << " "; recursive(i); } } ``` a) 2 b) 4 c) 8 d) 32 e) This is an infinite recursion.

Computer Science & Information Technology

____ software is a type of system software that is designed to perform a specialized task.

A. Utility B. Operating system C. Diagnostic D. Application

Computer Science & Information Technology

State which of the following are true and which are false. If a statement is false, explain why.

1) When passing a non-const argument to a const function, the const_cast operator should be used to cast away the “const-ness” of the function. 2) A mutable data member cannot be modified in a const member function. 3) namespaces are guaranteed to be unique. 4) Like class bodies, namespace bodies also end in semicolons. 5) namespaces cannot have namespaces as members.

Computer Science & Information Technology