xor_flashcards
1
Q
What is the result of A XOR A?
A
A XOR A = 0. XOR-ing a value with itself always results in 0.
2
Q
What is the result of A XOR 0?
A
A XOR 0 = A. XOR-ing a value with 0 leaves it unchanged.
3
Q
What is the result of A XOR 1?
A
A XOR 1 = ~A. XOR-ing a value with 1 toggles its value (flips the bits).
4
Q
Is XOR commutative and associative?
A
Yes, A XOR B = B XOR A, meaning XOR is both commutative and associative.