Which of the following is the unabbreviated version of IPv6 address BB8::113?

A) 0000:0000:0000:0000:0000:0000:0BB8:0113
B) 0BB8:0000:0000:0000:0000:0000:0000:0113
C) BB80:0000:0000:0000:0000:0000:0000:1130
D) 0000:0000:0000:0000:0000:0000:BB80:1130

B
Explanation: B) Leading zeros (not trailing zeros) are removed, and the double colon (::) represents the strings of all 0 hex quartets in the address (they do not come at the beginning by default).

Computer Science & Information Technology

You might also like to view...

To use MMS to send media files between phones, both devices must have Internet access using ________, which is a standard for wireless access to the Internet

A) IM B) Wireless Protocol C) TCP/IP D) WAP

Computer Science & Information Technology

How many comparisons of array items do the following loops contain?

``` for (j = 1; j <= n-1; j++) { i = j + 1; do { if (theArray[i] < theArray[j]) swap(theArray[i], theArray[j]); i++; } while (i <= n); } ```

Computer Science & Information Technology