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
NAND Truth Table
0 nand 0 = ?
0 nand 1 = ?
1 nand 0 = ?
1 nand 1 = ?
NAND Truth Table
0 nand 0 = 1
0 nand 1 = 1
1 nand 0 = 1
1 nand 1 = 0
NAND requires that at least one input to be false.
NOR OPERATOR
0=False
1=True
0 nor 0 = ?
NOR requires that both inputs be false.
1 = True
NOR OPERATOR
0=False
1=True
0 nor 1 = ?
NOR requires both inputs to be false.
0 = False
NOR OPERATOR
0=False
1=True
1 nor 0 = ?
NOR requires both inputs to be false.
0 = False
NOR OPERATOR
0=False
1=True
1 nor 1 = ?
NOR requires both inputs to be false.
0 = False
NOR Truth Table
0 nor 0 = ?
0 nor 1 = ?
1 nor 0 = ?
1 nor 1 = ?
NOR Truth Table
0 nor 0 = 1
0 nor 1 = 0
1 nor 0 = 0
1 nor 1 = 0
NOR requires both inputs to be false.
XOR OPERATOR
(Exclusive OR)
0=False
1=True
0 xor 0 = ?
XOR requires that both inputs be opposite.
0 = False
XOR OPERATOR
(Exclusive OR)
0=False
1=True
0 xor 1 = ?
XOR requires that both inputs be opposite.
1 = True
XOR OPERATOR
(Exclusive OR)
0=False
1=True
1 xor 0 = ?
XOR requires that both inputs be opposite.
1 = True
XOR OPERATOR
(Exclusive OR)
0=False
1=True
1 xor 1 = ?
XOR requires that both inputs be opposite.
0 = False
XOR Truth Table
0 xor 0 = ?
0 xor 1 = ?
1 xor 0 = ?
1 xor 1 = ?
XOR Truth Table
0 xor 0 = 0
0 xor 1 = 1
1 xor 0 = 1
1 xor 1 = 0
XOR requires both inputs to be different.
XNOR OPERATOR
0=False
1=True
0 xnor 0 = ?
XNOR requires both inputs to be the same.
1 = True
XNOR OPERATOR
0=False
1=True
0 xnor 1 = ?
XNOR requires both inputs to be the same.
0 = False
XNOR OPERATOR
0=False
1=True
1 xnor 0 = ?
XNOR requires both inputs to be the same.
0 = False
XNOR OPERATOR
0=False
1=True
1 xnor 1 = ?
XNOR requires both inputs to be the same.
1 = True
XNOR Truth Table
0 xnor 0 = ?
0 xnor 1 = ?
1 xnor 0 = ?
1 xnor 1 = ?
XNOR Truth Table
0 xnor 0 = 1
0 xnor 1 = 0
1 xnor 0 = 0
1 xnor 1 = 1
XNOR requires both inputs to be the same.