4-3) Identify & Convert Numbers and Symbols Flashcards

1
Q

How would you write out a 9 digit conversion table for decimal to binary number systems?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How would you write out 1 to 15 in binary?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How many digits does the decimal system have and what are they?

A

10

0-9

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Which number system is a base 10 system?

A

Decimal

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How many numbers does the binary number system have and what are they?

A

2 numbers: 1 and 0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Which number system is a base 2 system?

A

Binary

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How many numbers does the octal number system have and what are they?

A

8

0-7

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Describe the process for converting decimal to octal.

A
  • Divide the number by 8, record the remainder (as a whole number not a decimal)
  • Divide the quotient of the first operation by 8 again, record the remainder again as a whole number
  • Divide the quotient of the second operation by 8 again, record the remainder again as a whole number
  • Repeat this process until the quotient is 0 and the remainder is less than 8
  • The last remainder is the most significant digit, the first remainder is the least significant digit
  • Read the number from bottom (most signifiant) to top (least significant)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Describe the process of dealing with fractional decimal numbers when converting to octal.

A
  • Multiply fractional decimal by 8, note the quotient
  • Multiply the remainder by 8, note the quotient
  • Multiply the remainder by 8, note the quotient
  • Keep multiplying the remainder by 8 until either: you get a whole number or the numbers start to repeat.
  • The number is read from the top down
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Describe the process of converting Octal to Decimal

A
  • Multiply each digit by 8 raised to the power of the digit’s place:
  • 1’s = 80
  • 10s = 81
  • 100s = 82
  • 1000s = 83
  • 10,000 = 84
  • Take the Octal number and multiply it by 8 raised to the respective power of the digit.
  • All all the products together. The sum of the products is the decimal number.
  • When encountering fractional octal numbers, multiply by 8-1 , 8-2, 8-3 respectively for the 0.1, 0.01, 0.001 places
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

How many binary digits are needed to represent each of the octal digits?

A

3

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Write out the all octal digits in binary

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Describe the process of converting octal to binary

A

Each octal number can be represented by 3 binary digits. Convert octal 0-7 to binary 3 digit numbers starting with the most significant digit and ending with the least significant digit.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Describe the process of converting binary to octal

A

Each octal number can be represented by 3 binary digits. Divide the binary number into chunks of 3 binary digits each. Match each 3 digit segment with its respective octal number. Go in the same order of most to least significant digit (left to right).

0101112 to Octal

010 = 2 (most significant)

111 = 7 (least significant)

0101112 = 278

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

How many digits is hexadecimal based on?

A

16

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Write out a chart that shows dec, bin and hex conversions for 0 to 15

A
17
Q

What is 0 to 15 in Hex?

A

0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F

18
Q

Describe the process to convert decimal to hex

A

The process is very similar to converting decimal to octal, but except dividing by 8, you divide by 16.

When the remainder is a whole number less than 16, match that to the corresponding hex number.

Example:

10510 = 6916

105/16 = 6.5625

0.5625 x 16 = 9

=69

19
Q

Describe the process of converting hex to decimal

A

The process is similar as converting octal to decimal, but instead of multiplying by 8 raised to the digits places (^0, ^1, ^2, ^3, etc. etc.), you multiply by 16 raised to the digits place starting at ^1 for the 1s place and so on. Multiply each hex digit by 16x and then calculate the sum of these products to get the answer in decimal.

20
Q

What is Binary Coded Decimal?

A

BCD is a code of 4-bit digits from 0 to 9. Each number from 0 to 9 is represented by a 4-bit digit comprised of 0s and 1s.

21
Q

In binary coded decimal, how are numbers higher than 9 dealt with?

A

For numbers higher than 9, each digit is broken down into a single digit and represented by their corresponded 4-bit digits.

22
Q

Write out 0 to 9 in BCD

A
23
Q

What is meant by 8421 code?

A

8421 is another name for BCD. 8421 are the digits that represent the 4 columns if binary digits in each 4-bit digit:

A 1 in that column represents an 8, 4, 2 or 1, add them together to get the total decimal number that that 4-bit digit represents.

8421

0000= 0

0001 = 1

0010 = 2

0011 = 3

0100 = 4

0101 = 5

0110 = 6

0111 = 7

1000 = 8

1001 = 9