Computer Science, asked by ashish5111399, 20 days ago

int a=65, b=56;
boolean x=(a>b)?false:true;
The value stored in variable x is:

Answers

Answered by mahi78972
0

Answer:

False

Explanation:

Reason as 65 is greater than 56 so the true part will be executed which contains false.

Similar questions