Level/XNOR Gate: Difference between revisions

From Turing Complete
w:c:strategywiki>Henke37
(Yet another basic gate)
 
w:c:strategywiki>Henke37
(Switch to Y/N templates)
Line 8: Line 8:
! Input One !! Input Two !! Output
! Input One !! Input Two !! Output
|-
|-
| False|| False|| True
| {{No}}|| {{No}}|| {{Yes}}
|-
|-
| False|| True|| False
| {{No}}|| {{Yes}}|| {{No}}
|-
|-
| True|| False|| False
| {{Yes}}|| {{No}}|| {{No}}
|-
|-
| True|| True|| True
| {{Yes}}|| {{Yes}}|| {{Yes}}
|}
|}



Revision as of 21:40, 6 February 2023

This level has you create the XNOR Gate.

XNOR Gate Truth Table
Input One Input Two Output
No No Yes
No Yes No
Yes No No
Yes Yes Yes

Since this gate is just the inverse of the XOR Gate, use an XOR Gate and stick a NOT Gate on the output.