Save
Introduction to Computing M3
module 4
Save
Share
Learn
Content
Leaderboard
Share
Learn
Created by
Yujiro Hanma
Visit profile
Cards (95)
What is the
decimal system
?
The decimal system is a
positional numeral system
.
View source
How does the
position
of each digit in the
decimal system
affect its value?
Each position has a value
ten
times that of the position to its right.
View source
What symbols are used in
decimal notation
?
Digits
0, 1, 2, 3, 4, 5, 6, 7, 8, and
9
.
View source
What is the purpose of a
decimal separator
in
decimal notation
?
It indicates the start of a
fractional
part.
View source
What is the
radix
of a number system?
The
total
number of
unique
symbols available in that system.
View source
What is the value of the
largest
symbol in a number system?
It has a magnitude of
one
less than the
radix
.
View source
Why is the study of
number systems
important for understanding computers?
It helps us gain a better understanding of how computers perform
computation
.
View source
What is the
binary number system
?
It is the true language of
computers
, operating in two states.
View source
How does the
place value
in the
binary system
work?
Its place value is based on the number
two
.
View source
What are the places in the
binary system
?
One's place
,
two's place
,
four's place
,
eight's place
,
sixteen's place
, and so on.
View source
How does each place in the
binary
number system relate to the places to its right?
Each place represents two
times
the place to its right.
View source
What is the
base
of the
binary
number system?
The base, or
radix
, of the binary number system is
2
.
View source
What symbols are used in the
binary number system
?
Binary numbers are composed of two symbols:
0
and
1
.
View source
What is the
octal number system
?
Base
or radix of
8
Composed of eight symbols:
0, 1, 2, 3, 4, 5, 6, and 7
View source
What is the
hexadecimal
number system
?
Base
or radix of
16
Composed of sixteen symbols: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
A
, B, C, D, E, and
F
View source
What do the symbols A to F represent in the
hexadecimal
system?
They correspond to decimal numbers
10
to
15
.
View source
How do you convert
binary digits
to
octal
?
Group three binary digits starting from the
least significant bit
.
View source
What should you do if the grouping of
binary digits
does not form three digits when converting to
octal
?
Append 0 to the
most significant bit
if necessary.
View source
How do you convert
binary digits
to
hexadecimal
?
Group four binary digits starting from the
least significant bit
.
View source
What should you do if the grouping of
binary digits
does not form four digits when converting to
hexadecimal
?
Append 0 to the
most significant bit
if necessary.
View source
What are the steps in converting
binary
to
decimal
?
Place a number marker on the top of the digits and multiply the 1s by
powers of 2
.
View source
What is the process for converting a
decimal
number to
binary
?
Successively
divide the decimal number by 2.
View source
What should you do if you have a
fractional
part when converting a
decimal
to
binary
?
Successively
multiply the decimal number by 2.
View source
What are the steps in converting
decimal
to
octal
?
Divide the decimal number by
8
until you cannot divide anymore.
View source
What should you do if you have a
fractional
part when converting a
decimal
to
octal
?
Successively
multiply the decimal number by
8
.
View source
What are the steps in converting
decimal
to
hexadecimal
?
Divide the decimal number by
16
until you cannot divide anymore.
View source
What should you do if you have a
fractional
part when converting a
decimal
to
hexadecimal
?
Successively multiply the decimal number by
16
.
View source
How do you convert
octal
to
binary
?
Convert each octal
digit
into three binary digits.
View source
What is the process for converting a
decimal
number to a
binary
number?
Successively
divide the decimal number by
2
.
View source
What is the process for converting a
decimal
number to an
octal
number?
Successively
divide the decimal number by
8
.
View source
What is the process for converting a
decimal
number to a
hexadecimal
number?
Successively divide the decimal number by
16
.
View source
How do you convert a
decimal
number to
binary
?
By successively dividing the decimal number by
2
.
View source
How do you convert a
decimal
number to
octal
?
By successively dividing the decimal number by
8
.
View source
How do you convert a
decimal
number to
hexadecimal
?
By successively dividing the decimal number by
16
.
View source
What is the significance of the value 14 in hexadecimal conversion?
It should be converted to its corresponding hexadecimal symbol.
View source
How do you read the answer when converting
decimal
to
binary
?
You should read it
upward
.
View source
How do you read the answer when converting
decimal
to
octal
?
You should read it
upward
.
View source
How do you read the answer when converting
decimal
to
hexadecimal
?
You should read it upward.
View source
What is the process for converting a
decimal
number to
binary
?
By successively dividing the decimal number by
2
.
View source
What is the process for converting a
decimal
number to
octal
?
By successively dividing the decimal number by
8
.
View source
See all 95 cards