Other contributors have said "What is octal system?" is the same question as "How to convert a binary number to its octal?" If you believe that these are not asking the same thing and should be answered differently, click here
Starting from the right divide the binary number up in 3 bit sections, then convert each 3 bit section into its decimal equivalent.
Example: 101001110111012 = 10|100|111|011|101 =247358
Binary is a base 2 number system, while octal is base 8. This happens to make conversion between binary and octal fairly trivial, although more complex than conversion to hexadecimal. To convert to...
first convert 111110110 into base ten (decimal)
we have 0 in the 1 place 1 in the two place 1 in the four place 0 in the eight place 1 in the sixteen place 1 in the thirty-second place 1 in the...