Math, asked by janapriyankar4, 9 months ago

convert binary to octal​

Answers

Answered by Anonymous
3
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.

Answered by shahpurb
2

Answer:

1. Take binary number

2. Divide the binary digits into groups of three (starting from right) for integer part and start from left for fraction part.

3. Convert each group of three binary digits to one octal digit

EXAMPLES:

Example 1

(1010111100)2

= (001 010 111 100)2

= (1 2 7 4)8

= (1274)8

Example 2

(0110 011.1011)2

= (0 110 011 . 101 1)2

= (110 011 . 101 100)2

= (6 3 . 5 4)8

= (63.54)8

Attachments:
Similar questions