A company often processes sensitive data for the government. The company also processes a large amount of commercial work and as such is often providing tours to potential customers that take them into various workspaces. Which of the following security methods can provide protection against tour participants viewing sensitive information at minimal cost?
A. Strong passwords
B. Screen protectors
C. Clean-desk policy
D. Mantraps
Answer: C. Clean-desk policy
You might also like to view...
The field that uniquely identifies records in a table is called a(n) _____.
A. secondary key B. primary key C. search key D. identifier
What is a VLAN ID?
What will be an ideal response?
Fill in the code to complete the following function for checking whether a string is a palindrome.
``` bool isPalindrome(const char * const s) { if (strlen(s) <= 1) // Base case return true; else if _____________________________ // Base case return false; else return isPalindrome(substring(s, 1, strlen(s) - 2)); } ``` bool isPalindrome(const char * const s) { if (strlen(s) <= 1) // Base case return true; else if _____________________________ // Base case return false; else return isPalindrome(substring(s, 1, strlen(s) - 2)); } A. (s[0] <> s[strlen(s) - 1]) B. (s[0] = s[strlen(s) - 1]) C. (s[0] == s[strlen(s) - 1]) D. (s[0] != s[strlen(s) - 1])
For a descending sort in which you want to end up with the highest value first, write the decision so that you perform the switch when score[x] is ____ score[x + 1].
A. greater than or equal to B. equal to C. less than D. greater than