MCQEasyJEE 2026Logic Gates

JEE Physics 2026 Question with Solution

The given circuit works as:

Logic circuit with inputs A and B, each first passing through a NOR-style inverter stage, then combined into a NOR gate, followed by another inverter-like stage to produce the final output.
  • A

    NOR gate

  • B

    OR gate

  • C

    AND gate

  • D

    NAND gate

Answer

Correct answer:C

Step-by-step solution

Standard Method

Given: A logic circuit with inputs AA and BB is shown.

Find: Which basic logic gate the circuit is equivalent to.

Each input first passes through a NOT operation, so the intermediate outputs are AA' and BB'.

These two signals are then applied to a NOR gate, so the output is

Y=(A+B)Y = (A' + B')'

Using De Morgan's law,

(A+B)=AB(A' + B')' = A \cdot B

Therefore, the circuit performs the operation of an AND gate.

The correct option is C.

Step-by-step Boolean Analysis

Given: The circuit contains inverter action on both inputs followed by a NOR combination.

Find: The equivalent logic gate.

Step 1: Trace the two inputs.

  • Input AA goes through a NOT gate, giving AA'.
  • Input BB goes through a NOT gate, giving BB'.

Step 2: Identify the final gate. The final combining gate is a NOR gate, so its output is

Y=(A+B)Y = (A' + B')'

Step 3: Simplify the expression. Applying De Morgan's theorem,

Y=(A)(B)Y = (A')' \cdot (B')'

Double inversion gives

Y=ABY = A \cdot B

Step 4: Interpret the result. The Boolean expression ABA \cdot B is the expression of an AND gate.

A truth-table check also confirms this:

  • For A=0,B=0A=0, B=0, output is 00
  • For A=0,B=1A=0, B=1, output is 00
  • For A=1,B=0A=1, B=0, output is 00
  • For A=1,B=1A=1, B=1, output is 11

So the output pattern is 0,0,0,10,0,0,1, which matches an AND gate.

Therefore, the given circuit is equivalent to AND gate, i.e. option C.

Common mistakes

  • Mistake: Treating the middle gate expression as A+BA' + B' instead of (A+B)(A' + B')'. Why it is wrong: a NOR gate inverts the OR output. What to do instead: always include the output inversion bubble while writing the Boolean expression.

  • Mistake: Applying De Morgan's law incorrectly and concluding the circuit is a NAND gate. Why it is wrong: (A+B)=AB(A' + B')' = A \cdot B, not (AB)(A \cdot B)'. What to do instead: substitute carefully and remove double complements step by step.

  • Mistake: Ignoring the initial NOT operations on inputs AA and BB. Why it is wrong: the intermediate signals entering the NOR gate are AA' and BB', not AA and BB. What to do instead: trace the signal through each stage before identifying the final gate.

Practice more Logic Gates questions

Get unlimited AI-adaptive practice, mastery tracking, and an AI tutor that explains every step — free to start.

Related questions