Computer Science, asked by poojaguptasiwan94256, 2 months ago

state the difference between the logical AND and the logical OR operator.​

Answers

Answered by MrSeervi
1

Answer:

&& (and) — This operator will be truthy (act like true ) if and only if the expressions on both sides of it are true. || (or) — This operator will be truthy if the expression on either side of it is true. Otherwise, it will be falsy (act like false ).

Similar questions