1.2 Logical Operations - Logical Operators Flashcards

1
Q

What are the 4 operations in truth tables. Do you know their symbols?

A

AND - .
OR - +
NOT - Ā
XOR(Exclusively Or) - ⊕

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

What rule does the Boolean And(.) have?

A

It can only be true if both of the values named are true.

A B A.B
1 1 1
0 1 0
1 0 0
0 0 0

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

What rule does the Boolean OR(+) have?

A

The value is true if either one of the values or both of them are true.
A B A+B
1 1 1
0 1 1
1 0 1
0 0 0

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

What rule does the Boolean NOT(Ā) have?

A

The value is true if the value stated is false. If the value stated is true then the end result is false.
A B Not A Not B
1 1 0 0
0 1 1 0
1 0 0 1
0 0 1 1

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

What rule does the Boolean XOR(.) have?

A

The Value is True only if one of the values is True if both of them are true then the end result if false.
A B A⊕B
1 1 0
0 1 1
1 0 1
0 0 0

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