0
0
Intro to Computingfundamentals~20 mins

Binary number system in Intro to Computing - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Binary Mastery Badge
Get all challenges correct to earn this badge!
Test your skills under time pressure!
trace
intermediate
2:00remaining
Trace the binary addition
What is the result of adding the binary numbers 1011 and 1101? Show the final binary sum.
A10110
B11000
C10000
D11110
Attempts:
2 left
💡 Hint
Add each bit from right to left, carrying over when sum exceeds 1.
🧠 Conceptual
intermediate
2:00remaining
Understanding binary place values
Which decimal number does the binary number 100101 represent?
A41
B29
C37
D45
Attempts:
2 left
💡 Hint
Calculate the sum of powers of 2 where bits are 1.
Comparison
advanced
2:00remaining
Compare binary and decimal representations
Which of the following binary numbers is greater than decimal 20 but less than decimal 30?
A11001
B11100
C10101
D10011
Attempts:
2 left
💡 Hint
Convert each binary to decimal and check the range.
identification
advanced
2: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?
AThey correctly converted; 1110 is 14 decimal.
BThey forgot to multiply the leftmost bit by 8.
CThey added the place values incorrectly; 1110 is 15 decimal.
DThey reversed the bits; 1110 is 7 decimal.
Attempts:
2 left
💡 Hint
Calculate the decimal value of 1110 carefully.
🚀 Application
expert
3: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.
A32
B30
C28
D26
Attempts:
2 left
💡 Hint
Add the binary numbers bit by bit, then convert the result to decimal.