5.2 Numbering systems Flashcards

1
Q

the most common numbering systems are

A

decimal - base10
binary - base2
octal - base8
hexadecimal - base16

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

decimal (base10) number system has its origin

A

from counting on the fingers
digit comes from the Latin word digitus which means finger

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

base is the number of different digits including zero in the number system e.g.

A

octal or base8 = 0 to 7
hexadecimal or base 16 = 0 to F

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

the value of the largest digit of a numbering system is one less than the base

A

the value of the smallest digit in the number system is zero

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

the standard shorthand form of writing numbers is known as the positional notation

A

.

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

the most common numbering system used in everyday life

A

is decimal.
the digit at the far right is called the (LSD) least significant digit
the digit at the far left is called the (MSD) most significant digit

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

octal system is a shorthand method of

A

representing three-bit binary words

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

binary coded decimal

A

.

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

the simplest number system employing positional notation is

A

binary.
has a base of 2
uses just two digits 1 and 0

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

the value of the largest digit of a numbering system is one less than the base. For example, in a binary system (base 2), the largest digit is 1.

A

.

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

The value of the smallest digit of a numbering system is

A

zero

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

Gray code is also known as

A

reflective binary code

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

The binary number system is used in digital electronics because the two basic conditions of electricity, ‘ON’ and ‘OFF’, can be represented by the two digits of the binary number system

A

ON’, it represents the digit 1, and when it is ‘OFF’, it represents the digit 0.

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

417 in the decimal system. As it is converted digit-by-digit, the first digit is the 4, which in binary is 0100. Second, the 1 is a binary 0001. Finally, the 7 is 0111

A

That makes the full number 417 in BCD equal to 0100 0001 0111 2

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

when is gray code useful

A

when rapidly changing values could result in errors due to hardware and interfacing constraints.

Gray codes are used in rotary and optical encoders, Karnaugh maps, and error detection

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

The hamming distance (a metric for comparing two binary data strings) of two neighbouring Gray codes is always

A

1

17
Q

first Gray code and last Gray code also has hamming distance is always

A

1 so it is also called cyclic codes

18
Q

In aircraft, where altimeters are normally mechanical, an encoding disk synced to the dials may produce a type of Gray code output

A

called the Gillham code to send to the transponder for processing

19
Q

Gray code sequences must be converted to what if they are used in mathematical computations or for displays

A

binary or binary coded decimal (BCD)

20
Q

2 to the power of 0 =

A

1

21
Q

2 to the power of 1=

A

2

22
Q

converting decimal to binary step 1.

A

divide 100 by 2
use quotient obtained in this step as the dividend for the next step
repeat the process until quotient becomes 0
binary equivalent is obtained by reading the remainders from bottom to top as shown below.

Dividend Remainder
100 ÷ 2 = 50 0
50 ÷ 2 = 25 0
25 ÷ 2 = 12 1
12 ÷ 2 = 6 0
6 ÷ 2 = 3 0
3 ÷ 2 = 1 1
1 ÷ 2 = 0 1

answer is = 1100100

23
Q

in converting decimals to binary what is considered the most significant bit (MSB)

A

The first remainder obtained (at the bottom)

24
Q

in converting decimals to binary what is considered the least significant bit (LSB)

A

The last remainder (at the top)

25
Q
A