Computer Science, asked by himanshi20032005, 4 months ago

it is an operator that requires all the conditions to be true for inclusion in the result​

Answers

Answered by shinysparkles
1

Answer:

Logical And &&

Explanation:

When && operator is used in Java, it returns value as true or false depending upon the condition.

For example, 5>3&&3>2; Result is true since both conditions are true. 3>5&&5>2; Result is false since one condition is true while the other is not.

Similar questions