An organization has just completed development of a disaster recovery plan. The first test of the plan that should be performed is:

a. Parallel
b. Simulation
c. Walkthrough
d. Cutover


c. Walkthrough

Computer Science & Information Technology

You might also like to view...

The getBooleanFromUser(prompt) function can be used with an if or while statement.

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

Computer Science & Information Technology

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

1. An array behaves like a list of variables each of which is of the same type and for which there is a uniform, convenient naming convention that can be declared in a single line of code. In the explanation, give an example of declaration and access. 2. With arrays, indices start at any number the programmer chooses to indicate in the definition.

Computer Science & Information Technology

Which of the following functions can be invoked by an object of class D?

Consider the class inheritance. ``` class B { public: B(); B(int nn); void f(); void g(); private: int n; }; class D: public B { public: D(int nn, float dd); void h(); private: double d; }; ``` a) f() b) g() c) h()

Computer Science & Information Technology

A ________ enables you to create electronic worksheets composed of rows and columns

A) presentation application B) database C) spreadsheet application D) word processor

Computer Science & Information Technology