How does a switch "learn" MAC addresses?

A. All the MAC addresses must be entered manually.
B. The switch comes loaded with the most frequently used addresses.
C. It reads the source address and keeps a record of which port the sending computer is on
D. The switch uses a mathematical formula to determine what the MAC address would be for each computer connected to it.


Answer: C

Computer Science & Information Technology

You might also like to view...

Analyze the following code:

``` double[] array = {1, 2, 3}; ArrayList list = new ArrayList<>(Arrays.asList(array)); System.out.println(list); ``` a. The code is correct and displays [1, 2, 3]. b. The code is correct and displays [1.0, 2.0, 3.0]. c. The code has a compile error because an integer such as 1 is automatically converted into an Integer object, but the array element type is Double. d. The code has a compile error because asList(array) requires that the array elements are objects.

Computer Science & Information Technology

Suppose that you have the following declaration.int[] alpha = new int[50];int[][] beta = new int[10][5]; In this declaration, the array alpha has more components than the array beta.     

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

Computer Science & Information Technology

To display some, but not all, of the slides in a presentation, a(n) ________ should be created

A) animated presentation B) custom slide show C) sequential slide show D) personalized presentation

Computer Science & Information Technology

WordArt uses some predefined styles to enhance a long paragraph in a document

Indicate whether the statement is true or false

Computer Science & Information Technology