Which of the following is a viable option for a large enterprise or campus wireless network?

A. autonomous access point
B. lightweight access point
C. fat access point
D. Soft access point

Answer: B

Computer Science & Information Technology

You might also like to view...

To copy all the formatting of one control to other controls, use the Format Painter

Indicate whether the statement is true or false

Computer Science & Information Technology

What will be the value of discountRate after the following statements are executed?

``` double discountRate; char custType = 'B'; switch (custType) { case 'A': discountRate = 0.08; break; case 'B': discountRate = 0.06; case 'C': discountRate = 0.04; default: discountRate = 0.0; } ``` a. 0.08 b. 0.06 c. 0.04 d. 0.0

Computer Science & Information Technology