?Windows users who want to allow multiple people use of their computer can add a(n) ____ for each user.

A. ?index
B. ?account
C. ?digest
D. ?customization

Answer: B

Computer Science & Information Technology

You might also like to view...

An example of a component would be:

a) a button b) a timer c) a form d) All of the above

Computer Science & Information Technology

What is displayed by the following code fragment if all the variables are of type int?

``` k = 0; m = 0; for (p = 0; p < 10; p = p + k) { k = k + 1; m = m + p; printf("%4d%4d%4d\n", p, k, m); } ```

Computer Science & Information Technology