Computer Science, asked by preejavipin, 9 months ago

CONVERT BINARY NUMBER 11111010000 IN OCTAL

Answers

Answered by Anonymous
1

Answer:

B5 = 10110101

Explanation:

Step 1: Look up each octal digit to obtain the equivalent group of four binary digits. You can use the table below to make these conversions.

(B)16 = (1011)2

(5)16 = (0101)2

Step 2: Group each value of step 1

1011 0101

Step 3: Join these values and remove zeros at left (if necessary) to get the binary result.

10110101

So, 10110101 is the binary equivalent of hexadecimal number B5 .

Answered by AskewTronics
0

3720 or (3720_{8}):

Explanation:

  • When any user wants to convert the binary number into octal then he needs to first split the digit from right to left and make many three-digit like:-

           Orginal digit = 11111010000

           split digit = (11) (111) (010) (000)

  • Now put the decimal number of every three-digit cluster, like:-

          split digit = (11) (111) (010) (000)

           Decimal = 3 7 2 0.

  • This is the octal value of the above binary number. So the answer is 3720 base 8 because 8 is the base of the octal number.

Learn More:

  • Binary to Octal number : https://brainly.in/question/4110482
Similar questions