How to Convert Decimal Numbers into Binary Numbers
How to Convert Decimal Numbers into Binary Numbers
The decimal to binary conversion involves dividing the decimal number by 2 repeatedly and recording the remainders. The binary number is obtained by reading the remainders from bottom to top.
Steps for Decimal to Binary Conversion
- Divide the decimal number by 2.
- Record the remainder (0 or 1).
- Divide the quotient by 2 again.
- Repeat until the quotient becomes 0.
- Read the remainders from bottom to top to get the binary equivalent.
Example 1: Convert 25₁₀ to Binary
Step-by-step Calculation
Division by 2 | Quotient | Remainder |
---|---|---|
25 ÷ 2 | 12 | 1 |
12 ÷ 2 | 6 | 0 |
6 ÷ 2 | 3 | 0 |
3 ÷ 2 | 1 | 1 |
1 ÷ 2 | 0 | 1 |
Final Answer: 25₁₀ = 11001₂
Example 2: Convert 43₁₀ to Binary
Division by 2 | Quotient | Remainder |
---|---|---|
43 ÷ 2 | 21 | 1 |
21 ÷ 2 | 10 | 1 |
10 ÷ 2 | 5 | 0 |
5 ÷ 2 | 2 | 1 |
2 ÷ 2 | 1 | 0 |
1 ÷ 2 | 0 | 1 |
Final Answer: 43₁₀ = 101011₂
MCQs on Decimal to Binary Conversion
1. What is the binary equivalent of 10₁₀?
a) 1010₂
b) 1100₂
c) 1001₂
d) 1110₂
✅ Answer: a) 1010₂
2. What is the binary equivalent of 18₁₀?
a) 10010₂
b) 10100₂
c) 10011₂
d) 11000₂
✅ Answer: a) 10010₂
3. What is the binary equivalent of 50₁₀?
a) 110010₂
b) 101010₂
c) 100110₂
d) 111100₂
✅ Answer: a) 110010₂
4. The binary equivalent of 7₁₀ is:
a) 101₂
b) 110₂
c) 111₂
d) 100₂
✅ Answer: c) 111₂
5. Which of the following decimal numbers is represented as 1000₂ in binary?
a) 4₁₀
b) 6₁₀
c) 8₁₀
d) 10₁₀
✅ Answer: c) 8₁₀
Comments
Post a Comment