MCQEasyJEE 2024Logic Gates

JEE Physics 2024 Question with Solution

The truth table for the given circuit is:

  • A

    11

  • B

    22

  • C

    33

  • D

    44

Answer

Correct answer:B

Step-by-step solution

Standard Method

Given: The circuit includes a NOT gate on input AA, then an OR gate with inputs NOT(A)\text{NOT}(A) and BB, and finally an AND gate with this OR output and BB.

Find: Which truth table matches the circuit output YY.

From the circuit description in the solution:

NOT(A)\text{NOT}(A)

The OR gate output is

NOT(A)+B\text{NOT}(A) + B

The final output is

Y=(NOT(A)+B)BY = (\text{NOT}(A) + B) \cdot B

Now evaluate for all input combinations:

A=0,  B=0Y=(1+0)0=0A=0,  B=1Y=(1+1)1=1A=1,  B=0Y=(0+0)0=0A=1,  B=1Y=(0+1)1=1\begin{aligned} A=0,\; B=0 &\Rightarrow Y=(1+0)\cdot 0 = 0 \\ A=0,\; B=1 &\Rightarrow Y=(1+1)\cdot 1 = 1 \\ A=1,\; B=0 &\Rightarrow Y=(0+0)\cdot 0 = 0 \\ A=1,\; B=1 &\Rightarrow Y=(0+1)\cdot 1 = 1 \end{aligned}

So the truth table is:

ABY000011100111\begin{array}{c|c|c} A & B & Y \\ 0 & 0 & 0 \\ 0 & 1 & 1 \\ 1 & 0 & 0 \\ 1 & 1 & 1 \end{array}

This matches option B. Therefore, the correct option is B.

Boolean Simplification

Given: Y=(NOT(A)+B)BY = (\text{NOT}(A) + B) \cdot B

Find: The matching truth table.

Use Boolean algebra:

Y=(A+B)B=AB+BB=AB+B=B\begin{aligned} Y &= (\overline{A} + B)B \\ &= \overline{A}B + B\cdot B \\ &= \overline{A}B + B \\ &= B \end{aligned}

So the output depends only on BB. Hence whenever B=0B=0, output is 00, and whenever B=1B=1, output is 11.

Therefore, the correct truth table is the one corresponding to option B.

Common mistakes

  • A common mistake is to stop at the OR gate output A+B\overline{A}+B and forget the final AND operation with BB. This gives the wrong truth table. Always trace the signal through every gate up to the final output YY.

  • Students often evaluate logic expressions using arithmetic addition and multiplication without binary logic rules. In Boolean algebra, 1+1=11+1=1 and BB=BB\cdot B=B. Use logic gate rules, not ordinary arithmetic.

  • Another mistake is to ignore the NOT gate on AA and use AA instead of A\overline{A}. This changes the OR gate input and leads to an incorrect table. First write the complemented input correctly, then proceed.

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