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...
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!
You convert binary numbers with a binary point into octal then same way you convert any number with a point in any other base to any other base. Multiply or divide the number by its base until it is...