3. Answer the following questions.
(a) What do you mean by AND operator?
Answers
Explanation:
The AND operator is a Boolean operator used to perform a logical conjunction on two expressions -- Expression 1 And Experession 2. AND operator returns a value of TRUE if both its operands are TRUE, and FALSE otherwise.
Answer:
BRAINLIST THIS ANSWER
Explanation:
AND operators are often used in conditional and loop statements. Short-circuit versions of the logical AND operator exist in many programming languages, like the (&&) operator in C++ and Java and the keyword "AndAlso" in Visual Basic.
Short-circuiting does not evaluate the right-hand operand if the result of the left-hand operand is false, as the overall result should be false. Short-circuiting might improve performance; however, if the right-hand statement performs additional actions, such as an assignment operation, short-circuiting skips those actions.