Which of the following statements best describes segregation of duties?
A) Two individuals complete the same task simultaneously.
B) No one individual can control a process from start to finish.
C) Two individuals must both complete their half of a specific task.
D) Two individuals complete different tasks at the same time.
B) No one individual can control a process from start to finish.
Computer Science & Information Technology
You might also like to view...
An Odd Page ________ is a formatting mark that indicates the beginning of a new section on the next odd-numbered page
Fill in the blank(s) with correct word
Computer Science & Information Technology
What is the output of the following code segment:
int a = 3, b = 4, c = 5; if (a + 1 > c) cout << a << c; else if (b = = c – 1) cout << a << b; else if (a < c) cout << b << c; else cout << b << a; a) 43 b) 45 c) 34 d) 3445
Computer Science & Information Technology