A company has installed a new 802.11g point-to-point connection between two buildings and is experiencing low throughput across the link. The current setup involves a wireless bridge on the roof with an omnidirectional antenna. Which of the following would BEST improve the link performance?

A. Replace the omnidirectional antennas with Yagi antennas.
B. Configure channel hopping on both wireless bridges.
C. Replace the wireless bridges with wireless access points.
D. Install bidirectional amplifiers at both sites


Answer: A. Replace the omnidirectional antennas with Yagi antennas.

Computer Science & Information Technology

You might also like to view...

A computer name in a URL is also called a(n) ________.

a) home name b) DNS c) FQDN d) host name e) None of the above.

Computer Science & Information Technology

A linked list class uses a Node class with successor reference next and field element to store values. A recursive method to print all list elements can be written as

A) static void printList(Node list) { if (list != null) { System.out.println(list.element); printList(list.next); } } B) static void printList(Node list) { while (list!= null) { System.out.println(list.element) printList(list.next); list = list.next; } } C) static void printList(Node list) { while (list.next != null) { printList(list.next); System.out.println(list.element) list ++; } } D) static void printList(Node list) { System.out.println(list.element): printList(list.next); }

Computer Science & Information Technology

A(n) ________ is a set of standards for designing documents

A) bibliography B) style guide C) table of contents D) index

Computer Science & Information Technology

Having the user input the values directly is the best way to ensure that errors will not be included in the data

Indicate whether the statement is true or false

Computer Science & Information Technology