1.2) Logical Operations Flashcards

1
Q

What does the NOT logical operator have?

A

Only 1 input + 1 output.

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

How many inputs does the AND logical operator have?

A

2.

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

How many outputs does the AND logical operator have?

A

1.

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

How many inputs does the OR logical operator have?

A

2.

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

How many outputs does the OR logical operator have?

A

1.

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

How many inputs does the XOR logical operator have?

A

2.

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

How many outputs does the XOR logical operator have?

A

1.

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

What is the condition for the XOR logical operator to have the output 1?

A

A + B have to be different.

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

What is the condition for the OR logical operator to give an output of 1?

A

If either A or B is 1.

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

What is the condition for the AND logical operator to give an output of 1?

A

If A + B are both 1.

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

What is the condition necessary for the NOT logical operator to have an output of 1?

A

Output is opposite of input.

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

Can Boolean algebra be used to describe logical operations?

A

Yes.

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

What is the annulment law of Boolean Algebra?

A

Variable AND 0 always = to 0.

A variable or 1 is always = to 1.

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

What is the Identity law of Boolean Algebra?

A

Variable OR 0 always = to variable.

A variable OR 1 always = to 1.

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

What is the Idempotent law of Boolean Algebra?

A

A variable and its complement always = to 0.

A variable AND itself always = to variable.

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

What is the Complement law of Boolean Algebra?

A

A variable AND its complement always = to 0.

A variable OR its complement always = to 1.

17
Q

What is the Commutative law of Boolean Algebra?

A

Order of 2 variables with AND no difference.

Order of 2 variables with OR no difference.

18
Q

What is the Double Complement law of Boolean Algebra?

A

A double complement of variable always = to variable.

19
Q

What is the Distributive law of Boolean Algebra?

A

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

AND associative law: A(B.C) = (A.B)C = A.B.C.

20
Q

What does the notation of a bar on top of and input variable represent?

A

The NOT function.

21
Q

What does the notation of a dot ‘.’ Represent?

A

The AND function.

22
Q

What does the notation of a plus sign ‘+’ represent?

A

The OR function.

23
Q

What does the notation of a plus sign with a circle represent?

A

The XOR function.