Which of the following is a common link-state protocol?

A. OSPF
B. RIPv2
C. EIGRP
D. BGP


Answer: A

Computer Science & Information Technology

You might also like to view...

For sparse data, discuss why considering only the presence of non-zero values might give a more accurate view of the objects than considering the actual magnitudes of values. When would such an approach not be desirable?

What will be an ideal response?

Computer Science & Information Technology

After a Catch block is entered to handle an exception, which of the following statements are true?

I. A Catch block can rethrow an exception that it has not handled. II. A Catch block can rethrow an exception that it has partially handled. III. A rethrown exception may be handled by an exception handler list after that enclosing Try block. IV. A Catch block cannot rethrow an exception that it has completely handled. a. All of the above b. II, III, and IV c. I, II, and III d. both I and II

Computer Science & Information Technology

What will the browser display if the following script is executed?

``` < SCRIPT LANGUAGE = "JavaScript" > var theArray = [ 1, 2, 3, 4, 5, 6, 7, 8, 9 ]; modifyArray( theArray[ 3 ] ); document.write( theArray.join( " " ) ); function modifyArray( i ) { i = 11; } ``` a) Nothing, the browser will generate an error. b) 1 2 3 4 5 6 7 8 9 c) 1 2 11 4 5 6 7 8 9 d) 1 2 3 11 5 6 7 8 9

Computer Science & Information Technology

You can remove individual lines in an access list.

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

Computer Science & Information Technology