NUMBERING SYSTEMS Flashcards

(4 cards)

1
Q

How do you convert Decimal to Binary, Octal and Hex?

A
  • Repeated Division (First Remainder is LSB)
  • Factoring
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How do you convert Hex, Octal and Binary to Decimal?

A
  1. Multiply each bit of the Binary number by its positional weight.
  2. Sum the individual products to obtain the decimal equivalent.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How do you convert Binary to Octal and vice versa?

A
  • B->O Divide into groups of 3 bits and and covert the bits to 1 Octal digit.
  • O->B Converting each octal digit of the number into its 3 bit equivalent
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How do you convert Binary to Hex and vice versa?

A
  • B->H Group the binary bits into 4 bit strings starting with the LSB & then convert each 4-bit group to the equivalent Hex digit.
  • H->B Converting each Hex digit of the number into its 4 bit equivalent.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly