Computer Science, asked by abirmahmud2302, 7 hours ago

How can I convert any number from Binary Number to Octal Number. Please answer with an example and I need an answer in typed form.

Answers

Answered by peermohamed54362
1

Answer:

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.

Similar questions