Difficulty: Easy
Correct Answer: 10111100
Explanation:
Introduction / Context:
Converting decimal to binary is fundamental for digital design. The standard technique uses successive division by 2 or decomposition into powers of two that sum to the target value.
Given Data / Assumptions:
Concept / Approach:
Express 188 as a sum of powers of two, then place 1s in those bit positions and 0s elsewhere. Alternatively, use repeated division by 2 and collect remainders from last to first.
Step-by-Step Solution:
Verification / Alternative check:
Compute back: 128 + 32 + 16 + 8 + 4 = 188, matching the pattern 10111100₂.
Why Other Options Are Wrong:
Common Pitfalls:
Missing a needed power (for example, forgetting 4) or misplacing zeros when writing the final 8-bit form.
Final Answer:
10111100
Discussion & Comments