
David W. answered 05/21/19
Experienced Prof
A B A OR B A XOR B
0 0 0 0
0 1 ! 1
1 0 1 1
1 1 1 0
"Exclusive" means that it excludes the case when both inputs are "1".
Note that to add binary digits:
A + B = (A XOR B) with a carry of (A AND B) [do this for many bits and you have a computer]