int a=65, b=56;
boolean x=(a>b)?false:true;
The value stored in variable x is:
Answers
Answered by
0
Answer:
False
Explanation:
Reason as 65 is greater than 56 so the true part will be executed which contains false.
Similar questions