Difficulty: Easy
Correct Answer: The output is inverted.
Explanation:
Introduction / Context:
Schematic symbols carry meaning beyond pin placement. The small bubble (often called an inversion bubble) communicates active-LOW behavior or inversion at that node. Correctly interpreting this symbol prevents wiring mistakes in mixed-polarity designs.
Given Data / Assumptions:
Concept / Approach:
The NAND function is X = NOT(A * B). The symbol for a NAND gate is typically an AND gate shape with a bubble on the output, visually indicating the output is the complement of the internal AND function. Bubbles on inputs/outputs consistently denote inversion in logic symbols.
Step-by-Step Reasoning:
Identify the base shape: AND gate.Notice the output bubble: this adds a NOT to the output node.Hence the overall function is NAND, confirming that the bubble conveys inversion.
Verification / Alternative check:
Compare symbols: An AND gate without a bubble outputs A * B; adding a bubble makes it NOT(A * B). Similarly, an OR gate with an output bubble is a NOR gate (NOT(A + B)). The symbol convention is consistent across logic families.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
The output is inverted.
Discussion & Comments