Difficulty: Easy
Correct Answer: 111101₂
Explanation:
Introduction / Context:
Binary conversion is essential for understanding data representation and hardware operations. This problem reinforces repeated-division conversion and verification by expanding powers of 2.
Given Data / Assumptions:
Concept / Approach:
Use repeated division by 2, recording remainders, then read them in reverse. Alternatively, sum powers of 2 that equal the decimal number to verify the result.
Step-by-Step Solution:
Verification / Alternative check:
111101₂ = 1*2^5 + 1*2^4 + 1*2^3 + 1*2^2 + 0*2^1 + 1*2^0 = 32 + 16 + 8 + 4 + 0 + 1 = 61. Verified.
Why Other Options Are Wrong:
Common Pitfalls:
Writing remainders in forward order, dropping a remainder, or miscomputing powers of 2 during verification.
Final Answer:
111101₂
Discussion & Comments