For converting a number in decimal number system to its binary equivalent, remainders are recorded after successive division of the number by
2
To convert a number from the decimal (base-10) system to the binary (base-2) system, a common method involves repeatedly dividing the decimal number by 2. The key is to record the remainder obtained after each division.
The process works as follows:
This method is used because binary is a base-2 system, meaning each place value represents a power of 2 ($2^0, 2^1, 2^2$, etc.). Dividing by 2 helps us determine how many of each power of 2 fit into the decimal number.
Let's convert the decimal number 25 to binary:
| Division | Quotient | Remainder |
|---|---|---|
| $25 \div 2$ | 12 | 1 |
| $12 \div 2$ | 6 | 0 |
| $6 \div 2$ | 3 | 0 |
| $3 \div 2$ | 1 | 1 |
| $1 \div 2$ | 0 | 1 |
Reading the remainders from bottom to top gives us 11001. Therefore, the binary equivalent of decimal 25 is $11001_2$.
The options provided represent potential divisors. Based on the standard algorithm for converting decimal to binary, the correct divisor is 2.
What is the binary number equivalent to decimal number 1011 ?
What is 10011010 in decimal?
If (1012)3 = (112)R the value of the radix ‘R’ is
What would be the equivalent binary expression for 456?
Decimal equivalent of Binary No. 100 is: