1/4
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
No analytics yet
Send a link to your students to track their progress
What are the different types of logic gates (4)
NOT, AND, OR, XOR
What does a NOT gate do, what does it look like?
A NOT gate inverts the input - if the input is 1, the output will be 0. If the input is 0, the output will be 1.

What does an AND gate do, what does it look like?
it uses two inputs to generate one output. The output is always 0 except when both inputs are 1.

What does an OR gate do, what does it look like?
It uses two inputs to generate on output. If at least one of the inputs is 1, then the output will be 1. If none of the inputs are 1, the output is 0.

What does a XOR gate do, what does it look like?
It uses two inputs to generate one output. If at least one of the inputs is 1, then the output is 1. If none are 1, then the output is 0. HOWEVER - if both inputs are 1, then the output is 0.
