A technician has received a trouble ticket from a user who has intermittent wireless access. Moving the computer farther from the WAP results in a more stable connection. Which of the following is MOST likely the cause of this instability?
A. Wrong encryption type
B. SSID mismatch
C. Signal bounce
D. Incorrect channel
Answer: C. Signal bounce
Computer Science & Information Technology
You might also like to view...
Which of the following is NOT an important consideration when disposing of a computer?
A) donating a still usable computer to a local charity B) disposing of personal data possibly stored on the hard drive C) throwing out the old mouse and keyboard since they rarely fail D) deciding how to handle the hard drive
Computer Science & Information Technology
How many times will the following function call itself if 5 is passed as the argument?
``` void showMessage(int n) { if (n > 0) { cout << "Good day!" << endl; showMessage(n + 1); } } ``` a. 1 b. 4 c. 5 d. An infinite number of times
Computer Science & Information Technology