Question:medium

The logic performed by the circuit shown in the figure is equivalent to: 

Show Hint

De Morgan’s laws simplify logic circuits: \( \overline{A + B} = A \cdot B \) and \( \overline{A \cdot B} = A + B \). These transformations can turn complex circuits into simpler ones.
Updated On: Nov 26, 2025
  • \( AND \)
  • \( NAND \)
  • \( OR \)
  • \( NOR \)
Hide Solution

The Correct Option is A

Solution and Explanation

The circuit executes the following logical operations:

  1. Two initial NOT gates receive inputs \( a \) and \( b \), producing their respective complements \( \bar{a} \) and \( \bar{b} \).
  2. [ \text{Output of the first NOT gate: } \bar{a}, \quad \text{Output of the second NOT gate: } \bar{b}. ]
  3. An OR gate then combines these complements:
  4. [ \text{Output of the OR gate: } \bar{a} + \bar{b}. ]
  5. A subsequent NOT gate complements the OR gate's output, resulting in the final output:
  6. [ Y = \overline{\bar{a} + \bar{b}}. ]

Applying De Morgan's law simplifies this to:

[ Y = a \cdot b. ]

Consequently, the circuit functions as an AND gate.

Truth Table:

[ \begin{array}{|c|c|c|} \hline A & B & Y = A \cdot B \\ \hline 0 & 0 & 0 \\ 0 & 1 & 0 \\ 1 & 0 & 0 \\ 1 & 1 & 1 \\ \hline \end{array} ]

The circuit's output corresponds to the truth table of an AND gate.

Final Answer:

[ \boxed{\text{AND Gate}} ]

Was this answer helpful?
0