1.2) Logical Operations Flashcards
What does the NOT logical operator have?
Only 1 input + 1 output.
How many inputs does the AND logical operator have?
2.
How many outputs does the AND logical operator have?
1.
How many inputs does the OR logical operator have?
2.
How many outputs does the OR logical operator have?
1.
How many inputs does the XOR logical operator have?
2.
How many outputs does the XOR logical operator have?
1.
What is the condition for the XOR logical operator to have the output 1?
A + B have to be different.
What is the condition for the OR logical operator to give an output of 1?
If either A or B is 1.
What is the condition for the AND logical operator to give an output of 1?
If A + B are both 1.
What is the condition necessary for the NOT logical operator to have an output of 1?
Output is opposite of input.
Can Boolean algebra be used to describe logical operations?
Yes.
What is the annulment law of Boolean Algebra?
Variable AND 0 always = to 0.
A variable or 1 is always = to 1.
What is the Identity law of Boolean Algebra?
Variable OR 0 always = to variable.
A variable OR 1 always = to 1.
What is the Idempotent law of Boolean Algebra?
A variable and its complement always = to 0.
A variable AND itself always = to variable.