हिंदी

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; - Computer Applications

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
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 1.04: Operators in Java - Review Insight [पृष्ठ ४२]

APPEARS IN

अविचल Computer Applications [English] Class 10 ICSE
अध्याय 1.04 Operators in Java
Review Insight | Q 1. | पृष्ठ ४२
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×