Difficulty: Easy
Correct Answer: NAND
Explanation:
Introduction / Context:Many digital designs use gating or enabling signals. Recognizing how a gate reacts when an input is forced LOW helps identify the gate from observed behavior and is valuable for troubleshooting with a logic probe or oscilloscope.
Given Data / Assumptions:
Concept / Approach:
NAND is the inversion of AND: Y = (A · B · ... )’. An AND gate forced with any LOW input yields 0 at its output. Inversion by NAND flips that to 1. Therefore, whenever any input is 0, a NAND gate outputs 1. Only when all inputs are 1 does a NAND output 0. This matches the stated inhibit behavior with a HIGH output result.
Step-by-Step Solution:
Model with two inputs: Y = (A · B)’.Set B = 0 (inhibit). Then A · 0 = 0 and Y = 0’ = 1.Thus the gate that remains HIGH when a single input is forced LOW is the NAND gate.Verification / Alternative check:
Create a brief truth table for NAND. You will find that any row containing a 0 produces Y = 1, confirming the observation made in the problem statement.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
NAND
Discussion & Comments