+3 votes
in Class 12 by kratos

What is an XOR gate? Write its truth table.

1 Answer

+5 votes
by kratos
 
Best answer

XOR gate is a logic gate whose output is HIGH only when odd number of inputs are HIGH.

| Input | Output |
| --- | --- |
| A | B | Y = A + B |
| 0 | 0 | 1 |
| 0 | 1 | 0 |
| 1 | 0 | 0 |
| 1 | 1 | 1 |

...