A cold site backup approach is also known as

A. internally provided backup
B. recovery operations center
C. empty shell
D. mutual aid pact


Answer: C

Computer Science & Information Technology

You might also like to view...

Class-level ___________________ are used to add additional properties to an object.

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

Computer Science & Information Technology

The application prototyping approach to software development gives users what they want by employing principles used in other engineering disciplines, i.e. build a working model and use it. Critically discuss the arguments for and against this approach showing how the software development life cycle is consequently affected. What are the necessary conditions for it to be successful and what are the dangers/problems that could arise?

What will be an ideal response?

Computer Science & Information Technology

The code for testing whether the stack is empty is

A stack based on a linked list is based on the following code ``` class Node { String element; Node next; Node(String el, Node n) { element = el; next = n; } } Node top = null; ``` A) return top == null; B) return top = null; C) if (top == null) return true; else throw new RunTimeException(); D) if (top == 0) return true; else return false;

Computer Science & Information Technology

A cell ____________________ is the column and row location of a cell.

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

Computer Science & Information Technology