Save
...
Paper 2
Topic 5: Fundamentals of Data Representation
5.2. Number Bases
Save
Share
Learn
Content
Leaderboard
Share
Learn
Created by
shinichi
Visit profile
Cards (23)
What is a number base?
A system for
representing
numbers
View source
What is the decimal number base?
Base 10
View source
What is the binary number base?
Base 2
View source
What is the hexadecimal number base?
Base 16
View source
Why do humans primarily use decimal?
Because we have
ten fingers
View source
How are decimal numbers denoted?
With a
subscript
10
View source
How are binary numbers denoted?
With a
subscript
2
View source
How are hexadecimal numbers denoted?
With a
subscript
16
View source
What characters does hexadecimal use?
0-9 and
A-F
View source
Why is hexadecimal considered compact?
It uses fewer digits than
binary
View source
How many digits does the number 733452 use in binary?
Twenty
View source
How many digits does the number 733452 use in hexadecimal?
Five
View source
How do you convert from binary to decimal?
Using
place value
headers in powers of two
View source
What is the decimal equivalent of the binary number 10110010?
178
View source
How do you convert from decimal to binary?
Use place value headers and subtract values
View source
What is the binary representation of the decimal number 53?
110101
View source
What is a nybble in binary?
Four binary bits
View source
How do you convert from binary to hexadecimal?
Split binary into
nybbles
and convert
View source
What is the hexadecimal equivalent of the binary number 10110010?
B2
View source
How do you convert from hexadecimal to decimal?
Convert hexadecimal to
binary
first
View source
What is the decimal equivalent of the hexadecimal number B2?
178
View source
How do you convert from decimal to hexadecimal?
Convert decimal to
binary
, then to hexadecimal
View source
What is the hexadecimal representation of the decimal number 178?
B2
View source