Computer Science, asked by Maitri3797, 1 day ago

Varshini K.B my question is how to convert binary to octal for 011110

Answers

Answered by csr096106
0

Answer:

Step by step solution

Step 1: Write down the binary number

(011110)2

Group all the digits in sets of three starting from the LSB (far right). Add zeros to the left of the last digit if there aren't enough digits to make a set of three.

011 110

Step 2: Use the table below to convert each set of three into an octal digit. In this case,

011=3, 110=6.

So, the number 36 is the octal equivalent to 011110 in binary.

To convert from binary to octal use the following table:

Bin: 000 001 010 011 100 101 110 111

Octal: 0 1 2 3 4 5 6 7

Similar questions