Site selection and work area restrictions are examples of which type of controls used for physical security?

A. Administrative access controls
B. Environmental/life safety controls
C. Technical controls
D. Physical security controls

Answer: A
Explanation: Examples of administrative controls include site selection, visitor control, and work restrictions.

Computer Science & Information Technology

You might also like to view...

Which of the following DoS attack sends an ICMP packet with a modified return address to the broadcast network address?

a. SYN flood b. Ping of Death c. Smurf attack d. UDP flood

Computer Science & Information Technology

What is wrong with the following Do loop?

``` Dim index As Integer = 1 Do While index <> 10 lstBox.Items.Add("Hello") index += 2 ``` (A) It should have been written as a Do Until loop. (B) It is an infinite loop. (C) The test variable should not be changed within the loop itself. (D) Nothing

Computer Science & Information Technology