Computer Science, asked by ngopalgopal2124, 20 days ago

State the output of k

int a=9 , b=8, c=5 ;

boolean k= ( a>b && b>c ) || !( c>a) ;

System.out.println( k);​

Answers

Answered by 21097
1

Answer:

true

Explanation:

as a is more than b and b is more than c and c is not more than a

Similar questions