Which of the following are the devices on the customer's side of a WAN connection to a building, not including the actual connection point? (Select all that apply.)
A. CSU/DSU
B. modem
C. multiplexer
D. router
E. both A and D
Answer: E
Computer Science & Information Technology
You might also like to view...
All blog service providers offer storage space for text and photographs in the same location
Indicate whether the statement is true or false
Computer Science & Information Technology
If you have two RadioButtons (dogRadio and catRadio), how should you code them to create a mutually exclusive relationship?
a. ToggleGroup radioGroup = new ToggleGroup(); dogRadio.setToggleGroup(radioGroup); catRadio.setToggleGroup(radioGroup): b. ToggleGroup radioGroup = new radioGroup(); dogRadio.setToggle(radioGroup); catRadio.setToggle(radioGroup): c. dogRadio.setToggleGroup(); catRadio.setToggleGroup(): d. ToggleGroup dogRadio = new ToggleGroup(); ToggleGroup catRadio = new ToggleGroup();
Computer Science & Information Technology