Answer:
False.
Explanation:
&& The double ampersand operator is also called the AND Operator.Both the expression or commands written to it's left and right are executed if the value of both the expressions is True then the && returns True other wise if either of them is false or both are false then it return false.
It is mostly used in if statements,else if statements,loops.