Which of the following is a behavioral control that can be used to safeguard against the loss of integrity?
A. Rotation of duties
B. Log analysis
C. Code testing
D. Digital signatures
Answer: A
Explanation: Rotation of duties is an example of a behavioral control. Log analysis is a monitoring control, code testing is a process control, and digital signatures are an example of an access control.
You might also like to view...
Analyze the following code:
``` public class Test { public static void main(String[] args) { int[] x = {1, 2, 3, 4, 5}; xMethod(x, 5); } public static void xMethod(int[] x, int length) { System.out.print(" " + x[length - 1]); xMethod(x, length - 1); } }``` a. The program displays 1 2 3 4 6. b. The program displays 1 2 3 4 5 and then raises an ArrayIndexOutOfBoundsException. c. The program displays 5 4 3 2 1. d. The program displays 5 4 3 2 1 and then raises an ArrayIndexOutOfBoundsException.
How can a user view the contents of a Windows directory?
What will be an ideal response?
You view a portion of a document on the screen through a document _________________________, like the one in the accompanying figure.
Fill in the blank(s) with the appropriate word(s).
XML Schema divides its user-derived data types into two classes: primitive and derived.
Answer the following statement true (T) or false (F)