What is the minimum number of user accounts that must be created at install time?

A. one
B. two
C. three
D. four


Answer: B

Computer Science & Information Technology

You might also like to view...

The following function should swap the values contained in two integer variables, num1 and num2. What, if anything, is wrong with this function?

``` void swap(int num1, int num2) { int temp = num2; num2 = num1; num1 = temp; } ``` a. You must first initalize temp to 0 before using it. b. The variable temp should first be set to num1, not num2. c. The swap function must use reference parameters. d. The last line should be temp = num1. e. Nothing is wrong with this function.

Computer Science & Information Technology

A class becomes abstract when you place the __________ key word in the class definition.

a. super b. extends c. final d. abstract

Computer Science & Information Technology

What modifier should you use on a class so that a class in the same package can access it but a class (including a subclass) in a different package cannot access it?

a. public b. private c. protected d. Use the default modifier.

Computer Science & Information Technology

Which of the following Word Options menu categories allows you to enable and disable macros?

A) Language B) Add-Ins C) Advanced D) Trust Center

Computer Science & Information Technology