Challenge - 5 Problems
Binary Mastery Badge
Get all challenges correct to earn this badge!
Test your skills under time pressure!
❓ trace
intermediate2:00remaining
Trace the binary addition
What is the result of adding the binary numbers 1011 and 1101? Show the final binary sum.
Attempts:
2 left
💡 Hint
Add each bit from right to left, carrying over when sum exceeds 1.
✗ Incorrect
Adding 1011 (11 decimal) and 1101 (13 decimal) in binary:
- 1 + 1 = 10 (write 0, carry 1)
- 1 + 0 + carry 1 = 10 (write 0, carry 1)
- 0 + 1 + carry 1 = 10 (write 0, carry 1)
- 1 + 1 + carry 1 = 11 (write 1, carry 1)
- Carry 1 is written as the leftmost bit
Final sum: 11000 (24 decimal).
🧠 Conceptual
intermediate2:00remaining
Understanding binary place values
Which decimal number does the binary number 100101 represent?
Attempts:
2 left
💡 Hint
Calculate the sum of powers of 2 where bits are 1.
✗ Incorrect
Binary 100101 means:
- 1 × 2⁵ = 32
- 0 × 2⁴ = 0
- 0 × 2³ = 0
- 1 × 2² = 4
- 0 × 2¹ = 0
- 1 × 2⁰ = 1
Sum = 32 + 4 + 1 = 37 decimal.
❓ Comparison
advanced2:00remaining
Compare binary and decimal representations
Which of the following binary numbers is greater than decimal 20 but less than decimal 30?
Attempts:
2 left
💡 Hint
Convert each binary to decimal and check the range.
✗ Incorrect
Convert each binary to decimal:
- 10101 = 21
- 11100 = 28
- 11001 = 25
- 10011 = 19
Numbers greater than 20 and less than 30 are 21, 25, and 28. Among options, 21 (10101), 25 (11001), and 28 (11100) fit the condition.
❓ identification
advanced2:00remaining
Identify the error in binary to decimal conversion
A student converts binary 1110 to decimal and writes the result as 14. What is the mistake in their conversion?
Attempts:
2 left
💡 Hint
Calculate the decimal value of 1110 carefully.
✗ Incorrect
Binary 1110 means:
- 1 × 2³ = 8
- 1 × 2² = 4
- 1 × 2¹ = 2
- 0 × 2⁰ = 0
Sum = 8 + 4 + 2 + 0 = 14 decimal, so the student's conversion is correct.
🚀 Application
expert3:00remaining
Convert and add binary numbers with carry
What is the decimal value of the binary sum of 1111 and 1011? Show the final decimal result.
Attempts:
2 left
💡 Hint
Add the binary numbers bit by bit, then convert the result to decimal.
✗ Incorrect
Adding 1111 (15 decimal) and 1011 (11 decimal) in binary:
- 1 + 1 = 10 (write 0, carry 1)
- 1 + 1 + carry 1 = 11 (write 1, carry 1)
- 1 + 0 + carry 1 = 10 (write 0, carry 1)
- 1 + 1 + carry 1 = 11 (write 1, carry 1)
- Carry 1 is written as the leftmost bit
Final binary sum: 11010
Convert 11010 to decimal: 16 + 8 + 0 + 2 + 0 = 26 decimal.
Correction: The sum binary is 11010 which is 26 decimal, so option D is correct.