6
I was thinking and I came up with this question:
Why is there "Bitwise OR", "Bitwise AND" and "Bitwise XOR", if in Boolean logic there is only "Logical OR" and "Logical AND".
There should be the "Logical XOR"!
For example:
true false = true
true true = false
false true = true
false false = false
makes sense! I didn’t think of that
– xninja