A Fast Ethernet connection utilizes what pins on an RJ-45 plug?
a. 1, 2, 4, 5
b. 1, 2, 3, 5
c. 1, 2, 3, 6
d. 1, 2, 7, 8
ANSWER: c
Computer Science & Information Technology
You might also like to view...
A customer asks a technician for a device that has the capability to easily connect a laptop to an external monitor, keyboard, mouse, and charge the battery. Which of the following devices should the technician recommend to the customer?
A. Lightning B. KVM switch C. USB 3.0 D. Docking station
Computer Science & Information Technology
Write a program called mysed that applies the sed script given as the first argument against the file given as the second. If the sed succeeds (that is, exit status of zero), replace the original file with the modified one. Thus:
mysed '1,10d' text will use sed to delete the first 10 lines from text, and, if successful, will replace text with the modified file
Computer Science & Information Technology