XOR (Binary Gate): Difference between revisions
From TernaryWiki
Jump to navigationJump to search
Created page with "== Truth Tables == === XOR === <div class="tt"> <table class="tt"> <tr> <td class="tt_br tt_bb" colspan="2" rowspan="2">XOR</td> <td colspan="3" class="tce"><b>B</b></td> </tr> <tr> <td class="tt_bb">0</td> <td class="tt_bb">1</td> </tr> <tr> <td rowspan="2"><b>A</b></td> <td class="tt_br">0</td> <td>0</td> <td>1</td> </tr> <tr> <td class="tt_br">1</td> <td>1</td> <td>0</td> </tr> </table> <table class="tt"> <tr>..." |
(No difference)
|
Latest revision as of 13:20, 13 April 2025
Truth Tables
XOR
XOR | B | |||
0 | 1 | |||
A | 0 | 0 | 1 | |
1 | 1 | 0 |
XOR | ||
A | B | Y |
0 | 0 | 0 |
0 | 1 | 1 |
1 | 0 | 1 |
1 | 0 | 0 |
XNOR
XNOR | B | |||
0 | 1 | |||
A | 0 | 1 | 0 | |
1 | 0 | 1 |
XNOR | ||
A | B | Y |
0 | 0 | 1 |
0 | 1 | 0 |
1 | 0 | 0 |
1 | 0 | 1 |