Difficulty: Easy
Correct Answer: 00110010
Explanation:
Introduction / Context:
Translating arithmetic results between bases is common in programming and digital design. Here we add two decimal numbers and then represent the sum in 8-bit binary (most significant bit first).
Given Data / Assumptions:
Concept / Approach:
First do the decimal addition; then convert the result to binary by finding the sum of powers of two that equal 50. Alternatively, use repeated division by 2 or recall common binary values in the 32–63 range.
Step-by-Step Solution:
Verification / Alternative check:
Convert 00110010 back to decimal: 32 + 16 + 2 = 50, confirming correctness.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
00110010
Discussion & Comments