What general security principle, when applied to information security, would suggest the use of biometric access controls to safeguard extremely sensitive areas within a larger physical facility?
a. Least privilege
b. Separation of privileges
c. Defense in depth
d. Security through obscurity
Answer: c. Defense in depth
Computer Science & Information Technology
You might also like to view...
A ________ is a line whose points can be determined using a mathematical formula
A) trendline B) pointline C) graphline D) chartline
Computer Science & Information Technology
The following code segment is syntactically correct, but difficult to read. Rewrite the segment using indentation that improves its readability.
``` if (road_stat == 's') if (temp > 0) printf("Roads wet.\n"); else printf("Roads icy.\n"); else printf("Roads dry.\n"); ```
Computer Science & Information Technology