Computer Science, asked by shindesamruddhi424, 10 months ago

plz answer the question....​

Attachments:

Answers

Answered by anishasa
2

Answer:

Logical Operator OR ||

It returns true when atleast one of the condition is true

if(a > b)

System.out.println(a);

else if(a > c)

System.out.println(a);

Answered by Shubhgyanji
6

Answer:

>  Greater-than sign

|| logical OR

Explanation:

If a is greater-than b OR a is greater-than c

Print a  

Similar questions