Which general security principle dictated that no single user should have enough authority to commit a serious computer crime?

a. Defense in depth
b. Security though obscurity
c. Least privilege
d. Separation of privileges


Answer: d. Separation of privileges

Computer Science & Information Technology

You might also like to view...

Which of the following function declarations will accept either cout or a file stream object as its argument?

a. void output( fstream &outFile); b. void output( ofstream &outFile); c. void output( ostream &outFile); d. void output( iostream &outFile);

Computer Science & Information Technology

The format specifier ________ is used to output values of type float or double.

a. %f b. %d c. %fd d. %r

Computer Science & Information Technology

The constructor function's return type is

a. int b. float c. char d. structure pointer e. None of these

Computer Science & Information Technology

Which of the following is a legal function call for the function definition provided below?

``` function square( y ) { return y * y; } ``` a. ``` square(7+2); ``` b. ``` square("7"); ``` c. ``` square(7,2); ``` d. ``` square 7; ```

Computer Science & Information Technology