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
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