OR (Binary Gate): Difference between revisions

From TernaryWiki
Jump to navigationJump to search
Created page with "== Truth Tables == === OR === <div class="tt"> <table class="tt"> <tr> <td class="tt_br tt_bb" colspan="2" rowspan="2">OR</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>1</td> </tr> </table> <table class="tt"> <tr> <t..."
 
(No difference)

Latest revision as of 13:20, 13 April 2025

Truth Tables

OR

OR B
0 1
A 0 0 1
1 1 1
OR
A B Y
0 0 0
0 1 1
1 0 1
1 1 1

NOR

NOR B
0 1
A 0 1 0
1 0 0
NOR
A B Y
0 0 1
0 1 0
1 0 0
1 1 0