What is this boolean operation? -


a , b - bool-variables. ? - unknown operation find operation in expression a ? b following results:

0 ? 0 = 1 0 ? 1 = 0 1 ? 0 = 0 1 ? 1 = 1 

that looks truth table xnor, aka logical equality. see https://en.wikipedia.org/wiki/truth_table#logical_equality.


Comments

Popular posts from this blog

java - activate/deactivate sonar maven plugin by profile? -

python - TypeError: can only concatenate tuple (not "float") to tuple -

java - What is the difference between String. and String.this. ? -