Difficulty: Easy
Correct Answer: 1 + 1 + 0 + 0 = 1
Explanation:
Introduction / Context:
The OR operation outputs 1 if at least one input is 1. Evaluating a concrete input set helps reinforce the rule and avoid common mistakes such as thinking that “1 + 1” might produce a multi-bit sum in Boolean algebra. In logic, the plus symbol represents OR, not arithmetic addition.
Given Data / Assumptions:
Concept / Approach:
In Boolean algebra, X + Y = 1 if X = 1 or Y = 1 (or both). For multiple inputs, OR evaluates to 1 as soon as any single input is 1. Therefore, with at least one 1 among the inputs, the final result must be 1.
Step-by-Step Solution:
1) Evaluate A + B: 1 + 1 = 1 (in Boolean logic, not arithmetic).2) Include C: 1 + 0 = 1.3) Include D: 1 + 0 = 1.4) Final expression: 1 + 1 + 0 + 0 = 1.
Verification / Alternative check:
Truth table of OR confirms that any row with at least one 1 yields an output of 1. Here there are two ones, so the output is definitely 1.
Why Other Options Are Wrong:
Common Pitfalls:
Mixing arithmetic with Boolean algebra; in Boolean algebra, 1 + 1 remains 1 (idempotent law), not 2.
Final Answer:
1 + 1 + 0 + 0 = 1
Discussion & Comments