Q. Show Binary to Octal Conversion?
It is simple to convert from an integer binary number to octal. This is accomplished by:
- Break the binary number into 3-bit sections from the LSB to the MSB.
- Convert the 3-bit binary number to its octal equivalent.
For illustration, the binary value 1010111110110010 will be written:
001
|
010
|
111
|
110
|
110
|
010
|
1
|
2
|
7
|
6
|
6
|
2
|