Where would restrictions regarding what users can and cannot do while accessing a network's resources be found?

a. acceptable use policy document
b. terms of service document
c. license restrictions document
d. non-disclosure agreement document

ANSWER: a

Computer Science & Information Technology

You might also like to view...

____ is called a multipurpose OS because it can run on a desktop PC or a server.?

A. ?Windows RT B. ?UNIX C. ?iOS D. ?Android

Computer Science & Information Technology

Show the printout of the following code:

```#include using namespace std; void swap(int a[]) { int temp = a[0]; a[0] = a[1]; a[1] = temp; } int main() { int a[] = {1, 2}; swap(a); cout << "a[0] = " << a[0] << " a[1] = " << a[1] << endl; return 0; } ```

Computer Science & Information Technology