what are boolean operators
either TRUE or FALSE
often represented as 1 or 0
what are logic gates
a visual way of representing a boolean expression
AND, OR, NOT
explain the AND logic gate
returns TRUE only if both inputs are TRUE
explain the OR logic gate
returns TRUE if either input is TRUE
explain the NOT logic gate
reverse the input value
not TRUE = FALSE
not FALSE = TRUE
what is a truth table
represent all possible inputs and the associated outputs for a given Boolean expression