A technician is installing an 802.11n network. The technician is using a laptop that can connect at a maximum speed of 11 Mbps. The technician has configured the 802.11n network correctly but thinks it could be the type of WLAN card used on the laptop. Which of the following wireless standards is the WLAN card MOST likely using?

A. 802.11a
B. 802.11b
C. 802.11g
D. 802.11n


Answer: B. 802.11b

Computer Science & Information Technology

You might also like to view...

In the following pseudocode which uses recursion to find the factorial of a number, which is the base case?

``` Module main() Declare Integer number Declare Integer numFactor Display "Enter a non-negative integer:" Input number Set numFactor = factor(number) Display "The factorial of ", number, " is ", numFactor End Module Function Integer factor(Integer n) If n == 0 Then Return 1 Else Return n * factor(n - 1) End If End Function ``` a. n == 0 b. n * factor(n - 1) c. factor(n - 1) d. Return 1

Computer Science & Information Technology

_____ are external factors that shape corporate IT choices.?

A. ?Technology B. ?Competitors C. ?Managers D. ?Suppliers

Computer Science & Information Technology

Any time you're creating a website or a single web page with links to other websites, it's helpful to map out the relationships between pages.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

When the _____ logical operator is used to combine terms, a search engine will retrieve all results containing either term.

A. OR B. AND C. IF D. NOT

Computer Science & Information Technology