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...
Starting from the right, partition into triplets. Then convert each triplet of binaries into octal as follows:000 = 0001 = 1010 = 2011 = 3100 = 4101 = 5110 = 6111 = 7That's it!