What descendant of the Spanning Tree Protocol is defined by the IEEE 802.1W standard, and can detect as well as correct for link failures in milliseconds?

a. Transparent Interconnection of Lots of Links (TRILL)
b. Shortest Path Bridging (SPB)
c. Rapid Spanning Tree Protocol (RSTP)
d. Multiple Spanning Tree Protocol (MSTP)

ANSWER: c

Computer Science & Information Technology

You might also like to view...

The set of specific, sequential steps that describe exactly what a computer program must do to complete the work is called a(n) ________

A) algorithm B) structure chart C) flowchart D) pseudocode

Computer Science & Information Technology

Which of the following statements is preferred to create a string "Welcome to Java"?

a. String s = "Welcome to Java"; b. String s = new String("Welcome to Java"); c. String s; s = "Welcome to Java"; d. String s; s = new String("Welcome to Java");

Computer Science & Information Technology