AND
OR
NOT
NAND
Answer is Right!
Answer is Wrong!
The correct answer is A. AND.
The AND operator returns true if all the sub-conditions are true. For example, the expression A AND B is true if both A and B are true.
The OR operator returns true if any of the sub-conditions are true. For example, the expression A OR B is true if A is
The NOT operator returns the opposite of its operand.
For example, the expressionNOT A is true if A is false, and false if A is true.The NAND operator returns true if all the sub-conditions are false. For example, the expression A NAND B is true if both A and B are false.
I hope this helps! Let me know if you have any other questions.