1/7
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
What are the different types of logic gates?
AND(conjunction)(A∧B)
OR(disjunction)(A∨B)
NOT(negation)(¬ A)
What is an AND gate?
returns TRUE only if both inputs are ON
What is an OR gate?
returns TRUE if at least one input in ON
What is a NOT gate?
Reverses expected output
What is a truth table?
table to visualise results of a boolean expression
What 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 OR gate?
A | B | Q |
0 | 0 | 0 |
0 | 1 | 1 |
1 | 0 | 1 |
1 | 1 | 1 |
What is the truth table for a NOT gate?
A | Q |
0 | 1 |
1 | 0 |