Difficulty: Easy
Correct Answer: If one input to a 2-input AND gate is HIGH, the output reflects the other input.
Explanation:
Introduction / Context:
Logic gates implement Boolean operations used throughout digital electronics. The AND gate outputs a logic HIGH only when all of its inputs are HIGH. Knowing equivalent verbal formulations helps with quick reasoning, troubleshooting, and simplifying logic diagrams.
Given Data / Assumptions:
Concept / Approach:
For a 2-input AND gate, if one input is HIGH (1), the output equals the logical value of the remaining input. If one input is LOW (0), the output is forced LOW regardless of the other input. These properties follow directly from Boolean multiplication rules.
Step-by-Step Reasoning:
Let inputs be A and B, output X = A·B.If A = 1, then X = 1·B = B, so the output reflects B.If A = 0, then X = 0·B = 0, independent of B.Therefore the statement that a HIGH on one input makes the output follow the other input is correct.
Verification / Alternative check:
Check the truth table pairs (1,0)→0 and (1,1)→1; the output equals B in both cases when A = 1. Symmetrically, if B = 1, X equals A.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
If one input to a 2-input AND gate is HIGH, the output reflects the other input.
Discussion & Comments