Booleon Logic Flashcards
AND OPERATOR
0=False
1=True
0 and 0 = ?
AND requires both inputs to be true.
0 = False
AND OPERATOR
0=False
1=True
0 and 1 = ?
AND requires both inputs to be true.
0 = False
AND OPERATOR
0 = False
1 = True
1 and 0 = ?
AND requires both inputs to be true.
0 = False
AND OPERATOR
0 = False
1 = True
1 and 1 = ?
AND requires that both inputs be true.
1 = True
AND Truth Table
0 and 0 = ?
0 and 1 = ?
1 and 0 = ?
1 and 1 = ?
AND Truth Table
0 and 0 = 0
0 and 1 = 0
1 and 0 = 0
1 and 1 = 1
AND requires that both inputs be true.
OR OPERATOR
0=False
1=True
0 or 0 = ?
OR requires that at least one input is true.
0 = False
OR OPERATOR
0=False
1=True
0 or 1 = ?
OR requires that at least one input is true.
1 = True
OR OPERATOR
0=False
1=True
1 or 0 = ?
OR requires that at least one input is true.
1 = True
OR OPERATOR
0=False
1=True
1 or 1 = ?
OR requires that at least one input is true.
1 = True
OR Truth Table
0 or 0 = ?
0 or 1 = ?
1 or 0 = ?
1 or 1 = ?
OR Truth Table
0 or 0 = 0
0 or 1 = 1
1 or 0 = 1
1 or 1 = 1
OR requires that at least one input must be true.
NOT Operator (Inverter)
NOT returns the Boolean opposite of the input.
not 0 = 1
not 1 = 0
NAND OPERATOR
0=False
1=True
0 nand 0 = ?
NAND requires that at least one input to be False
1 = True
NAND OPERATOR
0=False
1=True
0 nand 1 = ?
NAND Requires at least one input to be false.
1 = True
NAND OPERATOR
0=False
1=True
1 nand 0 = ?
NAND Requires at least one input to be false.
1 = True
NAND OPERATOR
0=False
1=True
1 nand 1 = ?
NAND Requires at least one input to be false.
0 = False