What are the three logical operators?
AND, OR, NOT
What is the truth table for this gate?

This is the truth table for an OR gate
A B Q
0 0 0
0 1 1
1 0 1
1 1 1
What is the truth table for an AND gate?
This is the truth table for an AND gate
A B Q
0 0 0
0 1 0
1 0 0
1 1 1
What is the truth table for an NOT gate?
This is the truth table for a NOT gate
A Q
0 1
1 0