Converting Decimal Numbers into Octal
To convert a decimal number into octal, divide the number repeatedly by 8 and take the remainders. The first remainder is the LSD, and the last remainder is the MSD.
Converting Octal Numbers into Binary
To convert an octal number into binary, write the 3-bit binary equivalent of each octal digit.