Which of the following tools would be used to test the break in a fiber connection on the network?

A. Butt set
B. Multimeter
C. Toner probe
D. OTDR

Answer: D. OTDR

Computer Science & Information Technology

You might also like to view...

Which of the following must be intact for evidence to be admissible in court?

A. Chain of custody B. Order of volatility C. Legal hold D. Preservation

Computer Science & Information Technology

Which of the following segments is a proper way to call the method readData four times?

a. double k = 0.0; while (k != 4) { readData(); k = k + 1; } b. int i = 0; while (i <= 4) { readData(); i = i + 1; } c. int i = 0; while (i < 4) { readData(); } d. int i = 0; while (i < 4) { readData(); i = i + 1; }

Computer Science & Information Technology