What are the 3 Boolean Operators?
AND
OR
NOT
What does each Boolean Operator have
A logic gate
What are logic gates?
Special circuits in computer chips
Recieve binary data, apply a Boolean operation, output a binary result
Each logic gate has a corresponding truth table -> show the possible input combinations and corresponding outputs
AND Gate
Take 2 inputs, give 1 output
If both inputs are 1, the output is 1
If not, output is always 0
OR Gate
2 inputs, give 1 output
If at least one of the inputs is 1, output is 1
If not, input is 0
NOT Gate
1 input, 1 output
Output value is opposite to input value
NOT Gate
1 input, 1 output
Output value is opposite to input value