Which of the following would not be considered part of a disaster recovery plan?

A. Hot site
B. Patch management software
C. Backing up computers
D. Tape backup


B. Patching a system is part of the normal maintenance of a computer. In the case of a disaster to a particular computer, the computer's OS and latest service pack would have to be reinstalled.

Computer Science & Information Technology

You might also like to view...

The ____ sets a specific period of time to retain each record type, after which that particular record is erased from the system or archived in places that are difficult to access.

A. data access policy B. data security policy C. data retention policy D. data loss policy

Computer Science & Information Technology

Explain why the following statement is false:When several threads access shared information in main memory, mutual exclusion must be enforced to prevent the production of indeterminate results.

What will be an ideal response?

Computer Science & Information Technology

When invoking a method with an object argument, ___________ is passed.

a. the contents of the object b. a copy of the object c. the reference of the object d. the object is copied, then the reference of the copied object

Computer Science & Information Technology

Identify the compiler errors, and state what is needed to eliminate the error(s).

``` // This is a little program that calculates a modulus answer. int main() { double x,y,answer; answer = x%y; cout << “\n\n answer = << answer; return 0; } ```

Computer Science & Information Technology