What are XAND and XOR? Also is there an XNot
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
XORis short for exclusive or. It is a logical, binary operator that requires that one of the two operands be true but not both.So these statements are true:
And these statements are false:
There really isn’t such a thing as an”exclusive and” (or
XAND) since in theory it would have the same exact requirements asXOR. There also isn’t anXNOTsinceNOTis a unary operator that negates its single operand (basically it just flips a boolean value to its opposite) and as such it cannot support any notion of exclusivity.