Advertisements
Advertisements
Question
What are the values of x and y when the following statements are executed?
int a = 63, b = 36;
boolean x = (a > b) ? a : b;
int y = (a < b) ? a : b;
Answer in Brief
Solution
The given condition statement is incorrect:
boolean x = (a > b) ? a : b;
It should be:
boolean x = (a > b) ? true : false;
then, the values of x and y will be
x = true
y = 36
shaalaa.com
Is there an error in this question or solution?