Which logical operator returns true if both operands are true?
&& (AND)
|| (OR)
! (NOT)
!= (Not equal)
The logical AND operator (&&) returns true if both the operands are true. If either of the operands is false, the result will be false.
27 / 32