Difficulty: Easy
Correct Answer: At least one input must be LOW.
Explanation:
Introduction / Context:
Understanding how multi-input AND gates behave is critical when designing enable signals, chip selects, and safety interlocks. The AND function outputs HIGH only if all inputs are HIGH, so identifying the condition for a LOW output follows directly from its truth table.
Given Data / Assumptions:
Concept / Approach:
For AND, the product is 1 only when every factor is 1. Therefore, the presence of even a single 0 anywhere in the inputs forces the product to 0, guaranteeing a LOW output.
Step-by-Step Reasoning:
Write the output: X = A·B·C.If A = 0, then X = 0·B·C = 0 regardless of B and C.Similarly for B = 0 or C = 0, the result is 0.Thus, “at least one input LOW” assures X is LOW.
Verification / Alternative check:
Truth table confirms that only the row A=1, B=1, C=1 yields X=1; all other seven combinations contain at least one 0 and produce X=0.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
At least one input must be LOW.
Discussion & Comments