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:
49 + 1 = 50Express 50 as 32 + 16 + 2 = 2^5 + 2^4 + 2^18-bit pattern: bit5=1, bit4=1, bit1=1; others 0 → 00110010Verification / 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