Boolean expression for XOR gate
Answers
Answered by
1
The Boolean expression is represented as Y = A ⊕ B.
XOR is represented by the symbol "⊕". XOR is also known as exclusive OR gate.In the XOR gate, the output is high or 1 if the 2 inputs are different.
if (1 , 1) or (0 , 0) is given as input the output will be low or 0.
if (1 , 0) or ( 0 , 1) is given as input the output will be high or 1.
XOR gate can be made by OR, NOT, AND gate.
Similar questions