Difficulty: Easy
Correct Answer: 101₂
Explanation:
Introduction / Context:Binary addition is fundamental to arithmetic logic units (ALUs) and digital circuits. This item reinforces carry handling when summing two small binary numbers.
Given Data / Assumptions:
Concept / Approach:
Step-by-Step Solution:
Write vertically: 10₂ + 11₂.LSB column: 0 + 1 = 1 (carry 0).Next column: 1 + 1 = 0 with carry 1.Append carry to the left: result = 101₂.Verification / Alternative check:
Convert to decimal: 10₂=2, 11₂=3; 2+3=5; 5 in binary is 101₂.Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
101₂
Discussion & Comments