Logic and Data manipulation Flashcards
1
Q
What is AND
A
A conjunction that checks if the two inputs are true. EX: 1 0 = False 1 1 = True
2
Q
What is OR
A
A disjunction that checks if one of the inputs are true. EX: 0 0 = FALSE 0 1 = TRUE
3
Q
What is NOT
A
A negation inverts the input it receives.
EX: True becomes false and false becomes true
EX: 0 = true and 1 = false
4
Q
What is NAND
A
A alternative denial that inverts the result of the AND inputs.
Ex: 00 = 1 True, 11 = 0 False
5
Q
What is NOR
A
A joint denial that inverts the result of the OR inputs.
EX: 00 = 1 True, 01 = 0 False