Advertisements
Advertisements
प्रश्न
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;
संक्षेप में उत्तर
उत्तर
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
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?