Hexadecimal Flashcards
(27 cards)
What is the hexadecimal system based on?
The hexadecimal system is based on the base-16 number system.
How many digits are there in the hexadecimal system?
There are 16 digits in the hexadecimal system, ranging from 0 to 9 and A to F.
What is the binary equivalent of the hexadecimal digit ‘A’?
The binary equivalent of ‘A’ is 1010.
True or False: The hexadecimal digit ‘F’ is equivalent to the decimal number 15.
True.
Fill in the blank: Each hexadecimal digit can be represented by ____ binary digits.
4
What is the binary equivalent of the hexadecimal number ‘1C’?
0001 1100
How do you convert the hexadecimal number ‘2F’ to binary?
Convert each digit: 2 = 0010 and F = 1111, so ‘2F’ = 0010 1111.
What is the hexadecimal representation of the binary number ‘11011010’?
DA
True or False: The hexadecimal system is commonly used in computing for memory addresses.
True.
What is the binary equivalent of the hexadecimal digit ‘9’?
1001
What hexadecimal number corresponds to the binary ‘0000 1111’?
F
Fill in the blank: To convert hexadecimal to binary, replace each hex digit with its ____ equivalent.
4-bit binary
What is the binary equivalent of the hexadecimal number ‘3E’?
0011 1110
How do you convert the hexadecimal number ‘B2’ to binary?
Convert each digit: B = 1011 and 2 = 0010, so ‘B2’ = 1011 0010.
True or False: Hexadecimal is a more compact way to represent binary data.
True.
What is the hexadecimal equivalent of the binary number ‘1010 1010’?
AA
How many bits are used to represent a single hexadecimal digit?
4 bits.
What is the binary equivalent of the hexadecimal digit ‘C’?
1100
Fill in the blank: The hexadecimal digits ‘0’ to ‘9’ represent the values ____ to ____ in decimal.
0 to 9
What is the hexadecimal number for the binary ‘1111 0000’?
F0
True or False: The hexadecimal system is primarily used in mathematical calculations.
False.
What is the binary equivalent of the hexadecimal number ‘4D’?
0100 1101
How do you convert the binary number ‘0110 1100’ to hexadecimal?
Group into 4 bits: 0110 = 6 and 1100 = C, so ‘6C’.
What is the hexadecimal representation of the binary ‘0000 0001’?
1