Question:medium

For given logic gate circuit choose correct truth table.

Show Hint

Simplifying the Boolean expression before building the truth table can save a lot of time and reduce the chances of calculation errors. Remember key Boolean identities like the absorption law (\(A + AB = A\)) and De Morgan's theorems.
Updated On: Feb 2, 2026
Show Solution

The Correct Option is B

Solution and Explanation

To solve this question, we need to determine the truth table for the given logic gate circuit. The circuit consists of an OR gate and a NOR gate. Let's analyze the behavior of these gates step-by-step: 

Components:

  • An OR gate, represented by \(A + B\).
  • A NOR gate, which is a combination of OR gate followed by a NOT gate, represented by \(\overline{A + \text{OR output}}\).

Steps to derive the truth table:

  1. For inputs A and B, calculate the output of the OR gate: \(Y = A + B\).
  2. The output of the NOR gate is the negation of the OR gate's output: \(C = \overline{A + Y}\).

Now, let's fill the truth table for all combinations of inputs:

ABOR Output (Y = A + B)NOR Output (C = \overline{A + Y})
0001
0110
1010
1110

The correct truth table matches with the following option:

Conclusion: The correct answer is the second option. The NOR gate output is inverted compared to the OR gate output, as seen in the truth table above.

Was this answer helpful?
0