Which of the following devices would be used to connect different broadcast domains in order to allow them to communicate with each other?

A. Bridge
B. Layer 2 switch
C. Hub
D. Multilayer switch


Answer: D. Multilayer switch

Computer Science & Information Technology

You might also like to view...

Which of the following does not perform the following task: display correct if answer is equal to 7 and incorrect if answer is not equal to 7?

a. if ( answer == 7 ) cout << "correct"; else cout << "incorrect"; b. cout << answer == 7 ? "correct" : "incorrect"; c. cout << ( answer == 7 ? "correct" : "incorrect" ); d. answer == 7 ? cout << "correct" : cout << "incorrect";

Computer Science & Information Technology

The main difference between set and multiset is:

a. Their interface. b. That one deals with keys only, and the other deals with key/value pairs. c. Their efficiency. d. How they handle duplicate keys.

Computer Science & Information Technology

Write a general rotate method that takes the degrees to rotate the current Picture object and returns a new Picture object. Use the AffineTransform.rotate(double radians) method to do this. You will need to use the general Math.toRadians(int degrees) method to translate the degrees to radians.

What will be an ideal response?

Computer Science & Information Technology

Adding a subfolder to your Outlook mailbox is called appending.

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

Computer Science & Information Technology