To share an Internet connection with multiple devices on a home network, you need to connect a ________ to your modem

A) gateway
B) router
C) splitter
D) hub

B

Computer Science & Information Technology

You might also like to view...

Compute the Gini index for the Shirt Size attribute using multiway split.

Consider the training examples shown in Table 4.1 for a binary classification
problem.

Computer Science & Information Technology

What will be the value of x after the following statements are executed?

``` int x = 10; switch (x) { case 10: x += 15; case 12: x -= 5; break; default: x *= 3; } ``` a. 30 b. 20 c. 25 d. 5

Computer Science & Information Technology