Exclusive disjunction
From Wikipedia, the free encyclopedia
(Redirected from Xor)
Venn diagram of ![]() |
Venn diagram of ![]() |
Exclusive disjunction (also called exclusive or, XOR) is a Logic operation on two values. It will be true, if exactly one of the two values is true. Otherwise it will be false. This also means that the result of 'XOR' will be true only if both the values are different. Same values will result in a false.
The best way to remember a XOR operation is: "One or the other, but not both".
This is different from inclusive disjunction.
Truth table [change]
The truth table of
(also written as
, or
) is as follows:
| p | q | ⊕ |
|---|---|---|
| F | F | F |
| F | T | T |
| T | F | T |
| T | T | F |

