0 votes
by (1.1k points)

1 Answer

0 votes
by (1.1k points)
selected by
 
Best answer

&& - Called Logical AND operator. If both the operands are non-zero, then the condition becomes true.

|| - Called Logical OR Operator. If any of the two operands is non-zero, then the condition becomes true.

! - Called Logical NOT Operator. It is used to reverse the logical state of its operand. If a condition is true, then Logical NOT operator will make it false.

Welcome to CodersEditor Q&A, where you can ask questions and receive answers from other members of the community.
...