Which of the following is the correct abbreviated prefix for IPv6 address 0880:BB80:AAAA:00F0:0770:0010:0000:0113, assuming a mask of /36?
A) 880:BB80:A::/36
B) 880:BB80:A000::/36
C) 880:BB80:AAAA::/36
D) 880:BB80:AAAA:F0:770:10::113/36
B
Explanation: B) Only the first nine hex digits are part of the mask with /36, so only those remain nonzero. The rest should be converted to zero, and the abbreviation rules should be applied with special care given to leading versus trailing zeros.
You might also like to view...
The command pwd is used to change a password from the CLI
Indicate whether the statement is true or false
A ____________ would be used to check to see if x = 0 and n = 0 at the same time, and can also check to see if n is negative, before calling the recursive function.
``` 1 float p( float x, int n ) 2 { 3 if ( n == 0 ) 4 return 1; 5 else 6 return x p( x, n – 1 ); 7 } ``` A. driver B. class template C. class function D. overloaded operator function