Which of the following is an action that can be taken by a switch upon receiving a frame?

A) It may forward the frame out of a selected port.
B) It may filter the frame and not send it out of a port.
C) It may retransmit the frame out of the port at which it was received.
D) It may periodically retransmit the frame on all ports to assure receipt.

A, B
Explanation: A) The switch uses forward-versus-filter, choosing to forward or filter (not forward) a received frame.
B) The switch uses forward-versus-filter, choosing to forward or filter (not forward) a received frame.

Computer Science & Information Technology

You might also like to view...

Consider the class

``` class Value { private T v; public Value(T v1) { v = v1; } public void output() { System.out.println(v); } } ``` The code Value nV = new Value(12); A) will cause a compiler error B) will compile correctly, but cause an exception at run time C) will compile and run correctly D) None of the above

Computer Science & Information Technology

Modularizing a program makes it more efficient by including highly cohesive code and calling another module for each separate task.

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

Computer Science & Information Technology