Computer Science, asked by bindhushreehscol, 1 month ago

explain wgicaloperators​

Answers

Answered by itzvarshini
1

Answer:

(OR) In classical programming, the logical OR is meant to manipulate boolean values only. If any of its arguments are true, it returns true, otherwise it returns false.

OR "||" finds the first truthy value. The logic described above is somewhat classical. ...

&& (AND)

AND “&&” finds the first falsy value. Evaluates operands from left to right. ...

Explanation:

Similar questions