Briefly describe a lightweight access point.
What will be an ideal response?
A lightweight access point does not contain the management and configuration functions that are found in autonomous access points; instead, these features are contained in the centralized WLC. Lightweight access points only have simplified radios for wireless communication between devices and a media converter for accessing the wired network.
You might also like to view...
The ListCell
a. update b. updateItem c. newPresentation d. None of the above.
What is the missing code in the contains method for a Lisp-like list?
def contains(item, lyst): if isEmpty(lyst): return False elif item == first(lyst):
A. return True B. return contains(item-1) C. return False D. return first(lyst)