Save
Computer science
Hexadecimal numbers
Save
Share
Learn
Content
Leaderboard
Share
Learn
Created by
Burak
Visit profile
Cards (17)
What is the hexadecimal number system used for?
It is used regularly in
programming
.
View source
How does hexadecimal represent numbers?
It uses a combination of
digits
and
letters
.
View source
How does hexadecimal compare to binary?
Hexadecimal
numbers
are shorter than binary.
View source
What digits does hexadecimal (base-16) use?
Sixteen different digits:
0-9
and
A-F
View source
What does a single hex character represent in denary?
It represents any denary number from 0 to
15
.
View source
How many bits are required to represent 0-15 in binary?
4 bits are required, known as a
nibble
.
View source
Why do programmers prefer hexadecimal when coding?
Simpler to remember large
numbers
Shorter than
binary
numbers
Less chance of input errors
Easier to convert between binary and
hex
View source
What is the process to convert hex to denary?
Draw a table for hex number
Multiply each hex character by its
place value
Add up the results
View source
What is the denary equivalent of the hexadecimal number 87?
135
View source
How do you convert denary to hex?
Draw a table for division
Divide the denary number by
16
Record the remainder
Repeat until the
quotient
is 0
View source
What is the hexadecimal equivalent of the denary number 106?
6A
View source
How do you convert binary to hex?
Split binary into
nibbles
(4-bit
chunks
)
Convert each nibble to hex
Combine hex values
View source
What is the hexadecimal equivalent of the binary number 10111001?
89
View source
How do you convert a binary number that can't be split into nibbles?
Add
zeros
to the front of the binary number.
View source
What is the hexadecimal equivalent of the binary number 111110?
3E
View source
How do you convert hex to binary?
Convert each hex character to
denary
Find the binary value of each denary number
Combine the binary numbers
View source
What is the binary equivalent of the hexadecimal number 8C?
10001100
View source