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:
61 / 2 → q=30, r=130 / 2 → q=15, r=015 / 2 → q=7, r=17 / 2 → q=3, r=13 / 2 → q=1, r=11 / 2 → q=0, r=1Read upward: 111101₂.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