Lecture 3 Operators in JAVA - Part 2
Lecture 3 Operators in JAVA - Part 2
The output of AND operator is True only if all the conditions are true.
In case of & operator, even if initial condition is False, it will still check
for the remaining conditions.
| or || : called as OR operator.
| or || : called as OR operator.
In case of | operator, all conditions are checked even if the initial condition is
True.