define logical and( &&) and logical or (||) operator
Answers
Answered by
10
Explanation:
logical and operator is represented using two embrass and symbol (&&).It returns true when both the operands are true in all other cases it returns the answer as false.
logical OR operator is represented using a pipe symbol ||.It will give the answer as true if at least one operand is true otherwise gives false.
Similar questions