What category of twisted pair wiring is needed for a 10 Mbps network? 100 Mbps? 1000 Mbps?

What will be an ideal response?

The three major categories of Ethernet and their wiring is listed below:
? 10 Mbps: 10BaseT (Ethernet) ? Category 5
? 100 Mbps: 100BaseT (Ethernet Fast) ? Category 5E
? 1 Gbps: 1000BaseT (Gigabit Ethernet) ? Category 6

Computer Science & Information Technology

You might also like to view...

What is the length of time an IP address is assigned to a switch port called?

a. Delay time b. Enable time c. Aging time d. Access time

Computer Science & Information Technology

Suppose you enter 34.3, the ENTER key, 57.8, the ENTER key, abc, the Enter key. Analyze the following code.

``` 1 Scanner input = new Scanner(System.in); 2 double v1 = input.nextDouble(); 3 double v2 = input.nextDouble(); 4 String line = input.nextLine(); ``` a. After line 2 is executed, v1 is 34.3. b. After line 3 is executed, v2 is 57.8. c. After line 4 is executed, line contains an empty string. d. After line 4 is executed, line is null. e. After line 4 is executed, line contains character "abc".

Computer Science & Information Technology