Question

a and b - are my bool-variables. ? - is some unknown operation Help my to find operation in expression a ? b to get following results:

0 ? 0 = 1
0 ? 1 = 0
1 ? 0 = 0
1 ? 1 = 1
Was it helpful?

Solution

That looks like the truth table for XNOR, aka logical equality. See https://en.wikipedia.org/wiki/Truth_table#Logical_equality.

OTHER TIPS

This is XNOR boolean operation.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top