Which of the following prevents a router from advertising a network on the same interface from which it learned that network?
A. System routing
B. Link state routing
C. On-demand routing
D. Split horizon
Answer: D
Computer Science & Information Technology
You might also like to view...
How many times will the following do-while loop be executed?
``` int x = 11; do { x += 20; } while (x <= 100); ``` a. 5 b. 4 c. 3 d. 1
Computer Science & Information Technology
The ________ is a special built-in pointer that is available to a class's instance member functions.
A) overloaded -> operator B) this pointer C) &constructor pointer D) ~destructor *ptr E) None of the above
Computer Science & Information Technology