Draw an AND gate
What are the outputs for an AND gate?
00 = 0
01 = 0
10 = 0
11 = 1
Draw an OR gate
What are the outputs for an OR gate?
00 = 0
01 = 1
10 = 1
11 = 1
Draw a NOT gate
What are the outputs for a NOT gate?
0 = 1
1 = 0
Draw a NAND gate?
What are the outputs for a NAND gate?
00 = 1
01 = 1
10 = 1
11 = 0
Draw a NOR gate
What are the outputs for a NOR gate?
00 = 1
01 = 0
10 = 0
11 = 0
Draw an XOR gate
What are the outputs of an XOR gate?
00 = 0
01 = 1
10 = 1
11 = 0