What should be included in a site survey report?

What will be an ideal response?


Purpose of the report
Survey methods
RF coverage details (frequency and channel plan)
Throughput findings
Sources of interference
Problem zones
Marked-up facility drawings with access point placement
Access point configuration

Computer Science & Information Technology

You might also like to view...

Each time you add an object to an ArrayList using the ________ method, the object is added to the ________ of the list.

a) AddObject, end b) Add, end c) AddObject, beginning d) AddToFront, beginning e) AddToEnd, end

Computer Science & Information Technology

What are the advantages and disadvantages of a metaphor-based organizational scheme? Use Figure 3 from this chapter as an example.

What will be an ideal response?

Computer Science & Information Technology

Saving digital information for archiving or later access.

A. Input B. Storage C. Processing

Computer Science & Information Technology

What line in the following algorithm is wrong?Algorithm searchBST (root, targetKey)1   if (empty tree)1.1      return null2   end if3   if (targetKey < root)3.1      return searchBST (left subtree, targetKey)4   else if (targetKey >= root)4.1      return searchBST (right subtree, targetKey)5   else5.1      return root6   end ifend searchBST

A. 3 B. 3.1 C. 4 D. 4.1

Computer Science & Information Technology