MCQOPTIONS
Saved Bookmarks
| 1. |
int sum (int A[], int n){ int sum = 0, i; for (i = 0; i < n; i++) sum = sum + A[i]; return sum;}// sizeof(int) = 2 bytes8.Which is not an objective of network security? |
| A. | Identification |
| B. | Authentication |
| C. | Lock |
| D. | Access Control |
| Answer» D. Access Control | |