Which of the following is a disadvantage of using the EIGRP protocol?
A) It does not scale well.
B) It converges slower than OSPF.
C) It is a distance vector protocol.
D) It is a proprietary protocol.
Answer: D) It is a proprietary protocol.
You might also like to view...
Which of the following statements is false?
a. The following session defines a maximum function that determines and returns the largest of three values—then calls the function three times with integers, floating-point numbers and strings, respectively. In [1]: def maximum(value1, value2, value3): ...: """Return the maximum of three values.""" ...: max_value = value1 ...: if value2 > max_value: ...: max_value = value2 ...: if value3 > max_value: ...: max_value = value3 ...: return max_value ...: In [2]: maximum(12, 27, 36) Out[2]: 36 In [3]: maximum(12.3, 45.6, 9.7) Out[3]: 45.6 In [4]: maximum('yellow', 'red', 'orange') Out[4]: 'yellow' b. You also may call maximum with mixed types, such as ints and floats: In [5]: maximum(13.5, -3, 7) Out[5]: 13.5 c. The call maximum(13.5, 'hello', 7) results in TypeError because strings and numbers cannot be compared to one another with the greater-than (>) operator. d. All of the above statements are true.
How many subnet bits are used for the IP address/mask 172.16.240.67/24?
A) 0 B) 8 C) 10 D) 4
A CSV file contains values separated by semicolon delimiters.
Answer the following statement true (T) or false (F)
____ creates a new file and makes the file available for output; if a file exists with the same name, the old file is erased.
A. fileOut = fopen("prices.dat","r"); B. fileOut = fopen("prices.dat","w"); C. fileOut = fopen("prices.dat","a"); D. fileOut = fopen("prices.dat","b");