Logical Operations Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

NOT logical operator.

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

AND logical operator.

A

0 + 0 = 0
0 + 1 = 0
1 + 0 = 0
1 + 1 = 1

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

OR logical operator.

A

0 + 0 = 0
0 + 1 = 1
1 + 0 = 1
1 + 1 = 1

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

XOR logical operator.

A

0 + 0 = 0
1 + 0 = 1
0 + 1 = 1
1 + 1 = 0

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

What are the laws of Boolean algebra?

A
  • System of mathematics based on logic that has its own set of rules or laws that can be used to simplify Boolean expressions.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q
  • on top of a letter in Boolean algebra.
A
  • A bar on top of an input variable represents the NOT operator. = NOT A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

. in Boolean algebra.

A
  • Represents the AND operator. A and B = A.B
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

+ in Boolean algebra.

A

Represents the OR operator. A or B = A + B

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

+ sign with a circle in Boolean algebra.

A

Represents the XOR operator. A exclusive or B = A + () B.

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

Annulment law in Boolean algebra.

A

A.0 = 0 (A variable AND 0 = 0)

A + 1 = 1 (A variable OR 1 = 1)

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

Identity law in Boolean algebra.

A

A + 0 = A (A variable OR 0 = A variable)

A.1 = A (A variable AND 1 = A variable)

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

Idempotent law in Boolean algebra.

A

A + A = A (A variable OR A variable = A variable)

A.A = A ( A variable AND A variable = A variable)

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

Complement law in in Boolean algebra.

A

A.(-on top)A = 0 (A variable AND NOT A variable = 0

A +(-on top)A = 1 (A variable OR NOT A = 1)

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

Commutative law in Boolean algebra.

A

A.B = B.A (A AND B = B AND A)

A + B = B + A (A OR B = B OR A)

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

Double complement law in Boolean algebra.

A

2NOT A = A (Double complement of a variable is always equal to the variable).

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

Distributive law in Boolean algebra.

A
A(B+C) = A.B + A.C (OR distributive law)
A+(B.C) = (A+B).(A+C) (AND distributive law)
17
Q

Absorptive law in Boolean algebra.

A

A + (A.B) = A (OR absorption law)

A(A + B) = A (AND absorption law)

18
Q

Associative law in Boolean algebra.

A
A+(B+C) = (A+B)+C = A+B+C (OR associative law)
A(B.C) = (A.B)C = A.B.C (AND associative law)