A network administrator wants to logically separate web function servers on the network. Which of the following network devices will need to be configured?

A. IPS
B. Switch
C. Hub
D. HIDS

Answer: B. Switch

Computer Science & Information Technology

You might also like to view...

Audio file types other than .mp4 can be embedded in PowerPoint

Indicate whether the statement is true or false

Computer Science & Information Technology

Answer the following statements true (T) or false (F)

1) The three primary control structures are int, double, and char. 2) Repetition structures choose one of several alternatives based on a condition. 3) Sequential execution is the default control structure. 4) The following program fragment exchanges the values of x and y if x is less than y initially. ``` if (x < y) { y = x; x = y; } ``` 5. If the value of flag is 2, the following switch statement will cause a run-time error. ``` switch (flag) { case 0: cout << "Program execution successful"; break; case 1: cout << "Error in data format -- program exiting."; } ```

Computer Science & Information Technology