1. Which is the binary equivalent to the 192.168.11.10 IP address?

2. Which of the following is the binary equivalent to the 172.16.31.30 IP address?

3. Which is the hexadecimal equivalent of 202?

4. Which is the hexadecimal equivalent of 254?

5. Which is the decimal equivalent of A9?

6. Which of the following is the decimal equivalent of 7D?

7. What is the binary representation for the decimal number 173?

decimal 173 = 128 + 0 + 32 + 0 + 8 + 4 + 0 + 1

8. Given the binary address of 11101100 00010001 00001100 00001010, which address does this represent in dotted decimal format?

The binary number 11101100 00010001 00001100 00001010 translates to 236.17.12.10.

9. How many binary bits exist within an IPv6 address?

IPv4 addressing space is exhausted by the rapid growth of the Internet and the devices connected to the Internet. IPv6 expands the IP addressing space by increasing the address length from 32 bits to 128 bits.

10. What is the binary equivalent of the decimal number 232?

232 in binary is 11101000. 128+64+32+8 = 232

11. Which two statements are correct about IPv4 and IPv6 addresses? (Choose two.)

IPv4 addresses are represented as dotted decimal numbers and are 32 bits in length. IPv6 addresses are represented by hexadecimal numbers and are 128 bits in length.

12. Which IPv4 address format was created for ease of use by people and is expressed as 201.192.1.14?

For ease of use by people, binary patterns are represented as dotted decimal. Computer systems were created to understand binary addressing.

13. What is the dotted decimal representation of the IPv4 address 11001011.00000000.01110001.11010011?

Each section (octet) contains eight binary digits. Each digit represents a specific value (128, 64, 32, 16, 8, 4, 2, and 1). Everywhere there is a 1, the specific value is relevant. Add all relevant values in a particular octet to obtain the decimal value. For example binary 11001011 equals 203 in decimal.

14. What is the decimal equivalent of the binary number 10010101?

Binary 10010101 maps to 149 in decimal. 128+16+4+1 = 149

15. What is the decimal equivalent of the hex number 0x3F?

Hex 0x3F is 63 in decimal. (3*16)+(15*1) = 63

16. What is the dotted decimal representation of the IPv4 address which is represented as the binary string 00001010.01100100.00010101.00000001?

Converting the binary string of 00001010.01100100.00010101.00000001 to dotted decimal gives 10.100.21.1

17. What is the decimal equivalent of 0xC9?

0x refers to the item as hexadecimal. Convert each character into its corresponding nibble. Then combine the nibbles together and calculate the resulting decimal equivalent. C has a value of 12. 12 x 16 = 192. 192 + 9 = 201.

18. Which is a valid hexadecimal number?

The hexadecimal numbers are 0,1,2,3,4,5,6,7,8,9,a,b,c,d,e,f.. The hexadecimal number 0 represents 0 in decimal and is represented as 0000 in binary. The hexadecimal number f represents 15 in decimal.

19. What is the binary representation of 0xCA?

When converted, CA in hex is equivalent to 11011010 in binary. One way to do the conversion is one nibble at a time, C = 1100 and A = 1010. Combine the two nibbles gives 11001010.

20. How many bits are in an IPv4 address?

An IPv4 address is comprised of 4 octets of binary digits, each containing 8 bits, resulting in a 32-bit address.