One approach that can improve the situational awareness of the information security function is to use a process known as __________ to quickly identify changes to the internal environment.

A. baselining
B. difference analysis
C. differentials
D. revision


Answer: B

Computer Science & Information Technology

You might also like to view...

Which of the following does not perform the following task: display correct if answer is equal to 7 and incorrect if answer is not equal to 7?

a. if ( answer == 7 ) cout << "correct"; else cout << "incorrect"; b. cout << answer == 7 ? "correct" : "incorrect"; c. cout << ( answer == 7 ? "correct" : "incorrect" ); d. answer == 7 ? cout << "correct" : cout << "incorrect";

Computer Science & Information Technology

public static int exampleRecursion (int n){     if (n == 0)         return 0;    else         return exampleRecursion(n - 1) + n * n * n;}How many base cases are in the code in the accompanying figure?

A. zero B. one C. two D. three

Computer Science & Information Technology

Alice has an event type to let users change the position of an object while a world is running. This event type is ____.

A. When a key is typed B. When a variable changes C. Let the mouse move D. While the world is running

Computer Science & Information Technology

If a report is too wide, you will see a green error indicator in the ____ corner of the report.

A. upper-right B. lower-left C. lower-right D. upper-left

Computer Science & Information Technology