Number Systems, Operations, and Codes Flashcards

1
Q

What symbols are in the binary number system?

A

0 and 1

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

Convert 100101.01 to decimal

A

(100101.01)₂ = (1 × 2⁵) + (0 × 2⁴) + (0 × 2³) + (1 × 2²) + (0 × 2¹) + (1 × 2⁰) + (0 × 2⁻¹) + (1 × 2⁻²) = (37.25)₁₀

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

Convert 49 to binary

A

110001

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

What are all the hexadecimal symbols?

A

Hex: 0 1 2 3 4 5 6 7 8 9 A B C D E F
Decimal: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15

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

What are Octal numbers?

A

Octal uses the symbols 0 through 7 to represent numbers then carries on from 10 leaving out 8 and 9

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

What is the decimal number 8 as octal?

A

10

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

What is hexadecimal?

A

Hexadecimal is a weighted number system. The column weights are powers of 16, which increase from right to left

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

What is Octal

A

Octal is also a weighted number system. The column weights are powers of 8, which increase from right to left

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

What is Gray Code?

A

Gray code is an unweighted code that has a single bit change between one code word and the next in a sequence. Gray code is used to avoid problems in systems where an error can occur if more than one bit
changes at a time

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

How is Gray code displayed?

A

Gray code: Binary:
0000 0000
0001 0001
0011 0010
0010 0011
0110 0100
0111 0101
0101 0110
0100 0111

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

Why can Gray code be better in some scenarios?

A

As it only has 1-bit changes, it eliminates potential errors

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