What role does a WAP play in an 802.1x authentication system?

A. authenticator
B. authentication server
C. none
D. supplicant

A
Explanation: The role of the authenticator can be performed by a wide variety of network access devices, including remote access servers (both dial-up and VPN), switches, and wireless access points.

Computer Science & Information Technology

You might also like to view...

In Event Viewer which log contains events relating to running applications?

a. Security b. Setup c. System d. None of the above

Computer Science & Information Technology

In the following code, which statement is the throw point?

``` double divide(int numer, int denom) { if (denom == 0) throw "ERROR: Cannot divide by zero.\n"; else return static_cast(numer)/denom; } ``` a. if (denom == 0) b. throw "ERROR: Cannot divide by zero.\n"; c. return static_cast(numer)/denom; d. There is no throw point because there is no try block. e. None of these

Computer Science & Information Technology