HEXIDECIMAL Flashcards
(15 cards)
What character represents the decimal number 11?
B
In hexadecimal, the character for 11 is B.
What is the character for the decimal number 13?
D
In hexadecimal, the character for 13 is D.
What is the highest number that can be represented in two columns of hexadecimal?
255
Two columns of hexadecimal can represent values from 00 to FF, which equals 255 in decimal.
What is the highest number that can be represented in eight columns of binary?
255
Eight columns of binary can represent values from 00000000 to 11111111, which equals 255 in decimal.
Convert the hex number AA to denary.
170
AA in hexadecimal converts to 170 in decimal.
Convert the denary number 102 to hex.
66
102 in decimal converts to 66 in hexadecimal.
Convert the base 16 number AD to binary.
1 0 1 0 1 1 0 1
AD in hexadecimal converts to 10101101 in binary.
Convert the binary number 1 0 1 0 1 1 0 0 to base 16.
AC
The binary 10101100 converts to AC in hexadecimal.
Computers understand hexadecimal. True or False?
True
Hexadecimal is commonly used in computing as a shorthand representation of binary.
What is the correct binary representation of the denary number 46?
0 0 0 1 0 1 1 0
Denary 46 in binary is calculated by repeatedly dividing by 2 and recording the remainders.
What is the correct binary representation of the denary number 102?
0 1 1 0 0 1 1 0
Denary 102 in binary is calculated by converting the number from base 10 to base 2.
What is the correct binary representation of the denary number 240?
1 1 1 1 0 0 0 0
Denary 240 is represented in binary by converting the number and obtaining the binary digits.
What is the correct denary representation of the binary number 1 0 1 0 1 1 1 0?
174
To convert binary to denary, multiply each bit by 2 raised to the power of its position.
What is the correct denary representation of the binary number 1 1 0 1 1 0 1 1?
219
The denary conversion process involves summing the values of the binary digits based on their positional values.
What is the correct denary representation of the binary number 0 0 0 0 1 1 0 0?
12
Each binary digit corresponds to a power of 2, which is summed to find the denary equivalent.