As part of the process of conducting a business impact analysis (BIA), you perform the MTD, MTTR, and MTBF calculations. Which step of the BIA are you performing?
A. Identify critical processes and resources.
B. Identify resource requirements.
C. Identify outage impacts, and estimate downtime.
D. Identify recovery priorities.
C
Explanation: During the identify outage impacts and estimate downtime step, you would perform the MTD, MTTR, and MTBF calculations.
During the identify critical processes and resources step, you create a list of all the business assets. During the identify resource requirements step, you would document the device name, operating system or platform version, hardware requirements, and device interrelationships of all devices. During the identify recovery priorities step, you would take into account all the recovery calculations to produce a recovery hierarchy.
You might also like to view...
The command outFile.precision(2);
a. truncates all floating point variables to 2 decimal places b. sets all output streams in your program to display 2 secimal places c. displays integers as floating point numbers. d. displays all floating point values sent to outFile with 2 decimal places.
What is output by the following Java code segment?
``` int temp = 180; if (temp > 90) { System.out.println("This porridge is too hot."); // cool down temp = temp – (temp > 150 ? 100 : 20); } else { if (temp < 70) { System.out.println("This porridge is too cold."); // warm up temp = temp + (temp < 50 ? 30 : 20); } } if (temp == 80) { System.out.println("This porridge is just right!"); } ``` a. This porridge is too hot. b. This porridge is too cold. This porridge is just right! c. This porridge is just right! d. None of the above.