What are Logic Statements?
Logic Statements can be evaluated as either true or false.
What is a Truth Table?
A Truth Table is a method of representing every possible output based off on the inputs to a Boolean Expression.
What are the Logical Operators?
What is a NOT gate?
Not Reverses an Input. Ā = B
1 → 0
0 → 1
What is an OR gate?
An or gate returns true if either conditions are true, aka if a 1 is present. A V B = C / A + B = Q
What is an AND gate?
AND gates are the opposite of OR gates, it returns true if both values are true.