Difficulty: Easy
Correct Answer: 1000111₂
Explanation:
Introduction / Context:Converting from decimal (base-10) to binary (base-2) is foundational in computer architecture and number systems. The standard approach repeatedly divides the decimal number by 2, tracking remainders, or uses powers of 2 decomposition.
Given Data / Assumptions:
Concept / Approach:
Step-by-Step Solution:
Find largest power of 2 ≤ 71 → 64 = 2^6.Compute remainder: 71 - 64 = 7.Express 7 as 4 + 2 + 1 → 2^2 + 2^1 + 2^0.Set bits at positions 6, 2, 1, 0 → 1 000 111.Final binary: 1000111₂.Verification / Alternative check:
Convert back: 164 + 032 + 016 + 08 + 14 + 12 + 1*1 = 64 + 0 + 0 + 0 + 4 + 2 + 1 = 71₁₀.Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
1000111₂
Discussion & Comments