Which of the following criteria should be met for a system to receive a C2 rating?
A) The system should be able to assign permissions to individual users rather than to groups.
B) Users should have usernames and passwords to gain access to the system.
C) Security activities should be logged including information about the date, time, and user account involved.
D) All of the above
D) All of the above
You might also like to view...
All of the following can be copied with the Format Painter EXCEPT ________
A) cell borders B) font colors C) font sizes D) formulas
Write the program using an if command and then rewrite it using a case command. This program can be useful when reading yes/no responses from the terminal.
Write a program called isyes that returns an exit status of 0 if its argument is yes, and 1 otherwise. For purposes of this exercise, consider y, yes, Yes, YES, and Y all to be valid yes arguments: $ isyes yes $ echo $? 0 $ isyes no $ echo $? 1