if a = 1 and b = 0 what is the output of a xor gate
1
What is the truth table for the AND and NAND logic gates.
AND : [1 + 1 = 1][0 + 1 = 0][0 + 0 = 0][1 + 0 = 0]
NAND : [1 + 1 = 0][0 + 1 = 1][0 + 0 = 1][1 + 0 = 1]
What is the symbol (operator) for a xor operation?
⊕