The disaster recovery plan (DRP) is used to guide the re-creation of mission critical processes in the event of a disaster. Which of the following is a key element that is required as part of restoration planning to ensure that the most current version of the IT infrastructure is restored?
A. Service level agreements with contractors
B. Troubleshooting guidelines
C. Qualitative analysis risk report
D. Updated configuration documentation
Answer: D. Updated configuration documentation
You might also like to view...
An array called aList contains integers 5, 3, 7, 2, 8. What are the contents of aList after the function call workOnArray (aList, 4), if and the definition of workOnArray is:
int workOnArray (int a[], int n) { if (n == 1) return a[0] + 3; else { a[n] = workOnArray (a, n-1); return 7; } } a) 5, 3, 8, 8, 8 b) 5, 6, 10, 5, 11 c) 5, 3, 8, 7, 7 d) 8, 6, 10, 5, 11
Curly braces are needed in the body of a function when
a. there is more than one line of code b. always c. never; they are optional d. only when there are parameters
Which Windows log displays results of audited actions?
a. Security b. Setup c. System d. Forwarded Events
What is the output of the following code?
int x = 0; while (x < 4) { x = x + 1; } System.out.println("x is " + x); a. x is 0 b. x is 1 c. x is 2 d. x is 3 e. x is 4