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.
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
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