Which range of numbers is used to indicate that an extended ACL is being configured?

A) 2000-2699
B) 100-199
C) 1-99
D) 1300-1999


A, B
Explanation: A) Two numbered ranges are used to indicate a standard ACL: 1-99 and 1300-1999; also, two numbered ranges are used to indicate an extended ACL: 100-199 and 2000-2699.
B) Two numbered ranges are used to indicate a standard ACL: 1-99 and 1300-1999; also, two numbered ranges are used to indicate an extended ACL: 100-199 and 2000-2699.

Computer Science & Information Technology

You might also like to view...

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

1. The amount of memory used by an array depends on the array's data type and the number of elements in the array. 2. An array initialization must be all on one line. 3. When you pass an array as an argument to a function, the function can modify the contents of the array. 4. C++ limits the number of array dimensions to two. 5. If you attempt to store data past an array's boundaries, it is guaranteed to cause a compiler error.

Computer Science & Information Technology

Consider the code segment below. Which of the following statements is false?

``` int[] g; g = new int[23]; ``` a. The value of g[3] is -1. b. The first statement declares an array reference. c. The second statement creates the array. d. g is a reference to an array of integers.

Computer Science & Information Technology

C++ keeps track of the values of arguments and local variables in a data structure called a(n) _______.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

How do the instruction encodings of ARM processors and MIPS processors differ?

What will be an ideal response?

Computer Science & Information Technology