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
2
Q
How do you convert Hex, Octal and Binary to Decimal?
A
- Multiply each bit of the Binary number by its positional weight.
- Sum the individual products to obtain the decimal equivalent.
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
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.