Following truth table represent which logic gate -
| A | B | C |
| 1 | 1 | 0 |
| 0 | 1 | 1 |
| 1 | 0 | 1 |
| 0 | 0 | 1 |
XOR
NOT
NAND
AND
The given truth table corresponds to a specific logic gate. Let's analyze the truth table to identify which logic gate it represents:
| A | B | C |
|---|---|---|
| 1 | 1 | 0 |
| 0 | 1 | 1 |
| 1 | 0 | 1 |
| 0 | 0 | 1 |
To identify the logic gate, let's evaluate the behavior exhibited by columns A, B, and the corresponding output C:
This behavior is characteristic of the NAND gate, which outputs 0 only when all inputs are 1. For any other combination of inputs, the output is 1.
Now, let's rule out the other options:
Hence, the correct answer is that the given truth table represents a NAND gate.