Save
...
Paper 1
Memory & Storage
Number Storage
Save
Share
Learn
Content
Leaderboard
Share
Learn
Created by
Caylin Hindle
Visit profile
Cards (32)
What number system do computer systems use to process data?
Binary
View source
What is a bit?
A single
0
or
1
View source
How many bits are in a byte?
8
bits
View source
What does it mean that binary is a base 2 number system?
It has 2 possible values:
0 and 1
View source
What is denary also known as?
Decimal
View source
How many possible values does the denary system have?
10
possible values: 0 to 9
View source
What is hexadecimal?
A
base 16
number system
View source
How many possible values does the hexadecimal system have?
16
possible values: 0 to
F
View source
Why is hexadecimal used as shorthand for binary?
It uses fewer characters to write
values
View source
What is the hexadecimal equivalent of the binary number 100111101011?
9EB
View source
What happens when you convert double-digit numbers in hexadecimal?
They are converted into
letters
View source
What is the process to convert from denary to hexadecimal?
Convert to
binary
first
View source
What is the process to convert from hexadecimal to denary?
Convert to
binary
first
View source
What is the largest number that can be held in a byte?
255
View source
What is an overflow error?
When a
binary value
exceeds
storage capacity
View source
What is the effect of shifting left in binary?
It multiplies the
number
View source
What is the effect of shifting right in binary?
It divides the
number
View source
What is the effect of shifting left by 2 places?
Multiplies
by
4
View source
What is the effect of shifting right by 3 places?
Divides
by
8
View source
What are the steps to convert binary to denary?
Write down the binary number.
Assign
powers of 2
from right to left.
Add the values of the bits that are 1.
View source
What are the steps to convert denary to binary?
Divide the denary number by 2.
Record the remainder.
Repeat until the
quotient
is 0.
Read the remainders in reverse order.
View source
What are the steps to convert binary to hexadecimal?
Group binary digits in
sets
of 4.
Convert each group to its hexadecimal equivalent.
View source
What are the steps to convert hexadecimal to binary?
Convert each hexadecimal
digit
to a 4-bit binary
equivalent
.
Combine the binary values.
View source
What are the effects of binary shifts?
Left shift
: multiplies by 2 for each place
Right shift
: divides by 2 for each place
View source
What is the effect of shifting right by 2 places?
Divides
by
4
View source
What is the effect of shifting left by 1 place?
Multiplies
by 2
View source
What is the effect of shifting left by 3 places?
Multiplies
by
8
View source
What is the effect of shifting right by 4 places?
Divides
by
16
View source
What are common exam questions related to number systems?
Converting
denary
to
hexadecimal
Converting
hexadecimal to denary
View source
What should you practice for number systems exams?
Conversions between
binary
,
denary
, and
hexadecimal
View source
What is the importance of binary addition?
Allows adding binary values directly
Avoids conversion to
denary
View source
What is the significance of overflow errors in binary addition?
Indicates exceeding
storage capacity
Important for understanding
limits of binary values
View source