Q. Can you explain Octal to Binary Conversion?
It is also simple to convert from an integer octal number to binary. This is completed by:
- Convert the decimal number to its 3-bit binary equivalent.
- Combine the 3-bit sections by removing the spaces.
For illustration, the octal value 127662 will be written:
1
|
2
|
7
|
6
|
6
|
2
|
001
|
010
|
111
|
110
|
110
|
010
|
This capitulate the binary number 001010111110110010 or 00 1010 1111 1011 0010 in our more readable format.