Question:

Convert the decimal number 108 into its octal equivalent.

Show Hint

The repeated division method works for converting decimal to any base. To convert to binary, divide by 2. To convert to hexadecimal, divide by 16. Always remember to read the remainders in reverse order (from bottom to top).
Updated On: Jul 2, 2026
  • 124
  • 134
  • 144
  • 154
Show Solution
collegedunia
Verified By Collegedunia

The Correct Option is D

Solution and Explanation

To convert a decimal number to its octal (base-8) equivalent, we use the method of repeated division by 8. We record the remainder at each step.
Step 1: Divide 108 by 8.
$108 \div 8 = 13$ with a remainder of $4$.
Step 2: Divide the quotient (13) by 8.
$13 \div 8 = 1$ with a remainder of $5$.
Step 3: Divide the new quotient (1) by 8.
$1 \div 8 = 0$ with a remainder of $1$.
The process stops when the quotient becomes 0. The octal number is formed by reading the remainders from the bottom up.
Reading from bottom to top, we get 1, 5, 4.
Therefore, the octal equivalent of decimal 108 is $154_8$.
Was this answer helpful?
0
0