Which of the following devices can be used to setup a WAN?
A. Hub
B. Repeater
C. Router
D. Switch
Answer: C. Router
Computer Science & Information Technology
You might also like to view...
Explain the method you implemented for importing multiple restock files and updating the inventory items
What will be an ideal response?
Computer Science & Information Technology
The following code should output the even integers from 2 to 100:
``` counter = 2; do { Console.WriteLine(counter); counter += 2; } While (counter < 100); ```
Computer Science & Information Technology