You need to add a route to your routing table in order to allow connections to the internet from your subnet. What route should you add?

A. Destination: 192.168.1.258/0 -> Target: your Internet gateway
B. Destination: 0.0.0.0/33 -> Target: your virtual private gateway
C. Destination: 0.0.0.0/0 -> Target: 0.0.0.0/24
D. Destination: 10.0.0.0/32 -> Target: your virtual private gateway
E. Destination: 0.0.0.0/0 -> Target: your Internet gateway

Answer: E. Destination: 0.0.0.0/0 -> Target: your Internet gateway

Computer Science & Information Technology

You might also like to view...

A JScrollPane is provided automatically for which of the following?

a. JToggleButton. b. JRadioButton. c. JList. d. None of the above.

Computer Science & Information Technology

Consider the following list.list = {24, 20, 10, 75, 70, 18, 60, 35}Suppose that list is sorted using the selection sort algorithm as discussed in the book. What is the resulting list after two passes of the sorting phase; that is, after two iterations of the outer for loop?

A. list = {10, 18, 24, 20, 75, 70, 60, 35} B. list = {10, 18, 20, 24, 75, 70, 60, 35} C. list = {10, 18, 24, 75, 70, 20, 60, 35} D. list = {10, 20, 24, 75, 70, 20, 60, 35}

Computer Science & Information Technology