Booleon Logic Flashcards

1
Q

AND OPERATOR
0=False
1=True

0 and 0 = ?

A

AND requires both inputs to be true.

0 = False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

AND OPERATOR
0=False
1=True

0 and 1 = ?

A

AND requires both inputs to be true.

0 = False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

AND OPERATOR
0 = False
1 = True

1 and 0 = ?

A

AND requires both inputs to be true.

0 = False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

AND OPERATOR
0 = False
1 = True

1 and 1 = ?

A

AND requires that both inputs be true.

1 = True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

AND Truth Table

0 and 0 = ?
0 and 1 = ?
1 and 0 = ?
1 and 1 = ?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

OR OPERATOR
0=False
1=True

0 or 0 = ?

A

OR requires that at least one input is true.

0 = False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

OR OPERATOR
0=False
1=True

0 or 1 = ?

A

OR requires that at least one input is true.

1 = True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

OR OPERATOR
0=False
1=True

1 or 0 = ?

A

OR requires that at least one input is true.

1 = True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

OR OPERATOR
0=False
1=True

1 or 1 = ?

A

OR requires that at least one input is true.

1 = True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

OR Truth Table

0 or 0 = ?
0 or 1 = ?
1 or 0 = ?
1 or 1 = ?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

NOT Operator (Inverter)

A

NOT returns the Boolean opposite of the input.

not 0 = 1

not 1 = 0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

NAND OPERATOR
0=False
1=True

0 nand 0 = ?

A

NAND requires that at least one input to be False

1 = True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

NAND OPERATOR
0=False
1=True

0 nand 1 = ?

A

NAND Requires at least one input to be false.

1 = True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

NAND OPERATOR
0=False
1=True

1 nand 0 = ?

A

NAND Requires at least one input to be false.

1 = True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

NAND OPERATOR
0=False
1=True

1 nand 1 = ?

A

NAND Requires at least one input to be false.

0 = False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

NAND Truth Table

0 nand 0 = ?
0 nand 1 = ?
1 nand 0 = ?
1 nand 1 = ?

A

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.

17
Q

NOR OPERATOR
0=False
1=True

0 nor 0 = ?

A

NOR requires that both inputs be false.

1 = True

18
Q

NOR OPERATOR
0=False
1=True

0 nor 1 = ?

A

NOR requires both inputs to be false.

0 = False

19
Q

NOR OPERATOR
0=False
1=True

1 nor 0 = ?

A

NOR requires both inputs to be false.

0 = False

20
Q

NOR OPERATOR
0=False
1=True

1 nor 1 = ?

A

NOR requires both inputs to be false.

0 = False

21
Q

NOR Truth Table

0 nor 0 = ?
0 nor 1 = ?
1 nor 0 = ?
1 nor 1 = ?

A

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.

22
Q

XOR OPERATOR
(Exclusive OR)
0=False
1=True

0 xor 0 = ?

A

XOR requires that both inputs be opposite.

0 = False

23
Q

XOR OPERATOR
(Exclusive OR)
0=False
1=True

0 xor 1 = ?

A

XOR requires that both inputs be opposite.

1 = True

24
Q

XOR OPERATOR
(Exclusive OR)
0=False
1=True

1 xor 0 = ?

A

XOR requires that both inputs be opposite.

1 = True

25
Q

XOR OPERATOR
(Exclusive OR)
0=False
1=True

1 xor 1 = ?

A

XOR requires that both inputs be opposite.

0 = False

26
Q

XOR Truth Table

0 xor 0 = ?
0 xor 1 = ?
1 xor 0 = ?
1 xor 1 = ?

A

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.

27
Q

XNOR OPERATOR
0=False
1=True

0 xnor 0 = ?

A

XNOR requires both inputs to be the same.

1 = True

28
Q

XNOR OPERATOR
0=False
1=True

0 xnor 1 = ?

A

XNOR requires both inputs to be the same.

0 = False

29
Q

XNOR OPERATOR
0=False
1=True

1 xnor 0 = ?

A

XNOR requires both inputs to be the same.

0 = False

30
Q

XNOR OPERATOR
0=False
1=True

1 xnor 1 = ?

A

XNOR requires both inputs to be the same.

1 = True

31
Q

XNOR Truth Table

0 xnor 0 = ?
0 xnor 1 = ?
1 xnor 0 = ?
1 xnor 1 = ?

A

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.