Answer:
binary->octal
Explanation:
take binary number
divide the binary digits into groups of 3
convert each group to octal digit
How to convert binary number system to octal number system?
To convert binary number system to octal number system we have to follow some steps
Step 1 :
First we will convert binary to decimal number system.
Step 2 :
After converting binary to decimal we will convert decimal to octal number system.We divide the number by 8 and write the remainders in the reverse order to get the equivalent octal number.
Let us understand this with a help of an example.
Let us say that we are asked to convert (1010101)2 = (?)8
To solve this we will follow the above steps.
Refer to the attachment for explanation.