Difficulty: Easy
Correct Answer: all inputs are HIGH
Explanation:
Introduction / Context:NAND gates are universal components used widely because any logic function can be synthesized from NANDs. Knowing exactly when a NAND output falls LOW helps when designing active-low enables, resets, and interlock logic.
Given Data / Assumptions:
Concept / Approach:
The NAND function is the logical AND followed by inversion: Y = (A · B · ... )’. The product A · B · ... equals 1 only when every input is 1. Inverting that product gives 0 only in that single all-HIGH condition; in every other case (at least one input 0), the output remains 1 (HIGH).
Step-by-Step Solution:
Write expression: Y = (A · B · C · ... )’.Case all inputs HIGH: the product is 1; inversion yields Y = 0.Any input LOW: the product is 0; inversion yields Y = 1.Verification / Alternative check:
Construct a small truth table for two or three inputs. Check the single row with all 1s; there Y is 0. All other rows give Y = 1. This confirms the rule for NAND outputs.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
all inputs are HIGH
Discussion & Comments