Question:medium

Identify the correct truth table of the given logic circuit. 

Show Hint

Always reduce complex logic circuits into Boolean expressions before drawing the truth table.
Updated On: Apr 1, 2026
  • A
  • B
  • C
  • D
Show Solution

The Correct Option is B

Solution and Explanation

To solve the problem of identifying the correct truth table for the given logic circuit, let's analyze each logical gate step-by-step.

The logic circuit involves the following:

  • The first gate is an AND gate receiving inputs A and B.
  • The second gate is a NOT gate inverting the output of the first gate.
  • The third gate is another AND gate that combines the output of the NOT gate with the original input A.
  • The final gate is an OR gate that produces the output Y.

Now let's compute the output step-by-step:

  1. Calculate the output of the first AND gate: \(C = A \cdot B\)
  2. Apply the NOT gate: \(C' = \overline{C}\)
  3. Calculate the output of the second AND gate: \(D = A \cdot C'\)
  4. Apply the OR gate: \(Y = C + D\)

Let's create a truth table based on these calculations:

ABC = A . BC'D = A . C'Y = C + D
000100
010101
100111
111001

Analyzing our derived truth table, we can find the correct answer:

The correct truth table corresponds to option B from the provided choices.

Was this answer helpful?
2