Which of the following cable types designates that it can safely be run through a drop ceiling ?

A. STP
B. Plenum
C. CAT5e
D. UTP

Answer: B. Plenum

Computer Science & Information Technology

You might also like to view...

Analyze the following code.

double sum = 0; for (double d = 0; d < 10; sum += sum + d) { d += 0.1; } A. The program has a syntax error because the adjustment statement is incorrect in the for loop. B. The program has a syntax error because the control variable in the for loop cannot be of the double type. C. The program compiles but does not stop because d would always be less than 10. D. The program compiles and runs fine.

Computer Science & Information Technology

Java supports type inferencing with the <> notation in statements that declare and create generic type variables and objects. For example, the following line:

``` List list = new ArrayList();``` can be written as: a. List<> list = new ArrayList<>(); b. List<> list = new ArrayList(); c. List list = new ArrayList<>(); d. List list = new ArrayList();

Computer Science & Information Technology