Difficulty: Easy
Correct Answer: Correct
Explanation:
Introduction / Context:
Multi-input AND gates implement logical multiplication across all inputs. Only when every input is 1 does the output become 1. A single 0 forces the output to 0, irrespective of the other inputs.
Given Data / Assumptions:
Concept / Approach:
The expression for the output X is X = ABC. Substitute the given input values and evaluate the product to determine if the output is 0 (LOW) or 1 (HIGH).
Step-by-Step Solution:
Verification / Alternative check:
Truth rule: If any input of an AND gate is 0, the output must be 0. Here B = 0, so X = 0 despite A and C being 1.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing AND with majority or voting logic; assuming two highs outvote one low.
Final Answer:
Correct
Discussion & Comments