Write this binary number into its equivalent octal number(110101)
Answers
Answered by
0
Answer:
Take binary number.
Divide the binary digits into groups of three (starting from right) for integer part and start from left for fraction part.
Convert each group of three binary digits to one octal digit.
Explanation:
please mark brainliest dear ❣️❣️❣️
follow me
Answered by
2
Answer:
Example − Convert binary number 10010110 into octal number. First convert this into decimal number = (10010110)2 = 1x27+0x26+0x25+1x24+0x23+1x22+1x21+0x20 = 128+0+0+16+0+4+2+0 = (150)10 Then, convert it into octal number = (150)10 = 2x82+2x81+6x80 = (226)8 which is answer.
Hope it will help you
Similar questions