The proper alignment of the transmit and receive pairs in a CAT5/5e/6 UTP cable requires what?
A) The transmit (+) and (-) signals connected to the receivers (-) and (+) signals, respectively.
B) The transmit (-) and (+) signals connected to the receivers (-) and (+) signals, respectively.
C) The transmit (+) and (-) signals connected to the receivers (+) and (-) signals, respectively.
D) None of these answers are correct.
A
You might also like to view...
An I/O module that is quite primitive and requires detailed control is usually referred to as an _________.
A. I/O command B. I/O controller C. I/O channel D. I/O processor
What is the first line of the file created by the following code?
``` Dim query = From line In IO.File.ReadAllLines('N.txt') Let data = line.Split(","c) Let country = data(0) Let population = 1000000 * CDbl(data(2)) Select country & '," & population IO.File.WriteAllLines("NewFile.txt", query) ``` (A) Afganistan,31.8 (B) Afganistan,31,800,000 (C) Afganistan,31800000 (D) country,population