Which aspect of hardening a Windows Web server allows you to restrict access to the web server based on IP address?

A. authentication
B. NTFS permissions
C. access control
D. data confidentiality

Answer: C

Computer Science & Information Technology

You might also like to view...

Match each term with the correct statement below.

A. The approach of utilizing alternative sites as a means of ensuring against loss of data and functionality B. Specific strategy to ensure continuity C. Alternative site that provides the same capabilities of the primary site D. The specific time that the organization estimates will be required to achieve restoration of the system and its data E. Alternative site that would allow migration of staff to ensure recovery with some loss of data F. Alternative site that mirrors processing of a primary site in real time G. Continuous operational analysis of the threat environment in order to identify any changes that will have to be planned for H. Routine evaluation of the business environment in order to ensure continuing relevance of the continuity plan I. The specific level of integrity that data will be restored following a disaster

Computer Science & Information Technology

Analyze the following code.

``` #include using namespace std; int main() { char *p; cout << "Enter a string: "; cin >> p; cout << p << endl; return 0; } ``` a. If you run the program and enter abc, unpredictable characters will be displayed. b. If you run the program and enter abc, abc will be displayed. c. If you run the program and enter abc, nothing will be displayed. The program runs without errors. d. If you run the program and enter abc, a runtime error will occur, because p is used without being initialized.

Computer Science & Information Technology