COGNITIVE ASSESSMENT
Which term is used to describe the practice that users' access privileges are limited to the lowest level necessary to perform required tasks?

A. theory of restriction
B. principle of least privilege
C. hierarchy of administration
D. protocol of access

Answer: B

Computer Science & Information Technology

You might also like to view...

What is wrong in the following code?

``` #include using namespace std; class TempClass { public: int i; TempClass() { int i = 5; } }; int main() { TempClass temp(2); } ``` a. The program compiles fine, but it does not run because class C is not public. b. The program has a compilation error because TempClass does not have a default constructor. c. The program compiles and runs fine. d. The program has a compilation error because TempClass does not have a constructor with an int argument.

Computer Science & Information Technology

A(n) ________ is an effective way of using VBA code to increase the interactivity by prompting the user for information, e.g. username, and storing that information in a variable to be used later.

A. data declaration B. input box C. control button D. message box

Computer Science & Information Technology