Which of the following protocols uses label-switching routers and label-edge routers to forward traffic?

A. BGP
B. OSPF
C. IS-IS
D. MPLS

Answer: D. MPLS

Computer Science & Information Technology

You might also like to view...

A wiki and a tweet are similar because they are collaborative, enabling contributors to post, read, and modify content.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

What does this program do?

``` // Ex. 8.14: ex08_14.cpp // What does this program do? #include using namespace std; int mystery2(const char*); // prototype int main() { char string1[80]; cout << "Enter a string: "; cin >> string1; cout << mystery2(string1) << endl; } // What does this function do? int mystery2(const char* s) { unsigned int x; for (x = 0; *s != '\0'; ++s) { ++x; } return x; } ```

Computer Science & Information Technology