Difficulty: Easy
Correct Answer: NOR gate
Explanation:
Introduction / Context:
Recognizing the input–output relationship of basic logic gates is crucial for troubleshooting digital circuits and for converting truth tables into gate implementations. NOR gates are especially important because they are universal—any logic function can be built from NOR gates alone.
Given Data / Assumptions:
Concept / Approach:
A NOR gate performs logical OR followed by inversion. Thus, Y = NOT(A + B + ...). The OR inside becomes 1 if any input is 1; the inversion then forces the output to 0 in that case. Therefore, only when all inputs are 0 does the output become 1; otherwise it is 0 (LOW).
Step-by-Step Solution:
Verification / Alternative check:
Consulting the NOR truth table shows the output is 1 only for the all-zeros input combination; for any other combination containing a 1, the output is 0. This exactly matches the statement in the question.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
NOR gate
Discussion & Comments