Convert 64CD to binary and octal
Answers
Answered by
0
64CD is in Hex form
Converting to Binary:
Break it into 4 parts:
6=0110
4=0100
C=1100
D=1101
Hence,64CD will be written as 0110010011001101
Converting to octal:
First of all convert it to decimal.
64CD
Now, convert this decimal to octal by following steps:
Divide 25805 by 8
25805= 3225x8+(5)
3225=403x8+(1)
403=50x8+(3)
50=6x8+(2)
6= 0x8+(6)
Now, you can see the remainders in the bracket...
Write that in reverse order:
51326=>62315(octal)
Similar questions