A network technician is designing a SOHO environment where cost is a consideration. The requirements include access to the Internet and access to the guest house which is 100 feet away. The location of the Internet modem is located in the main house. Which of the following is the BEST option to accomplish these requirements?

A. Use two combined Internet/router/wireless devices, one in each house.
B. Use a Layer 3 switch in the main house and a combined Internet/router/wireless device in the guest house.
C. Use a combined Internet/router/wireless device in the main house and a wireless access point in the guest house.
D. Use a single combined Internet/router/wireless device at the guest house.


Answer: C. Use a combined Internet/router/wireless device in the main house and a wireless access point in the guest house.

Computer Science & Information Technology

You might also like to view...

A Boolean variable can have which of the following values:

a. true b. false c. 1 d. 0 e. Any of the above are possible values for a Boolean variable

Computer Science & Information Technology

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

1. A new node must always be made the last node in the list. 2. A new node cannot become the first node in the list. 3. If a node is not the first node in a linked list, deleting it may require setting the successor pointer in its predecessor. 4. A non-empty linked list of items can be reversed by removing the head, reversing what is left, and then adding the (original) head at the end of the reversed tail. 5. Deleting an entire list requires traversing the list to delete the nodes.

Computer Science & Information Technology

In indirect recursion, how many method calls can occur between one call to a method and the next one that completes the indirect recursion

a) 2 b) 3 c) 4 d) 5 e) There is no limit to the number of intervening calls between a method and its indirect recursive call.

Computer Science & Information Technology

Instance variables declared final do not or cannot:

a. Cause syntax errors if used as a left-hand value. b. Be initialized. c. Be modified after they are initialized. d. None of the above.

Computer Science & Information Technology