KnowledgeBoat Logo
|

Computer Applications

The statement (a > b) && (a > c) uses a logical operator.

Java Operators

3 Likes

Answer

True

Reason — The statement (a > b) && (a > c) uses the logical operator &&, which is the AND operator. This operator is used to combine two Boolean expressions and returns true only if both expressions are true. In this case, it checks whether a is greater than both b and c.

Answered By

1 Like


Related Questions