214k views
3 votes
The following truth table matches which boolean condition? 1 010 101 100 1

1) AND
2) OR
3) NOT
4) XOR

1 Answer

4 votes

Final answer:

The truth table matches the boolean condition XOR, as it yields true only when one input is true and the other is false.

Step-by-step explanation:

The truth table provided by the student matches the boolean condition XOR (Exclusive OR). This operation yields true only when the inputs differ (one true and one false).

Let's analyze the truth table:

  • If both inputs are 0, the output is 0.
  • If one input is 0 and the other is 1, the output is 1.
  • If one input is 1 and the other is 0, the output is 1.
  • If both inputs are 1, the output is 0.

The XOR operation is the only one that fits these conditions, thus option 4) XOR is the correct answer.

User Nfirex
by
8.1k points