English

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

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?
Chapter 1.04: Operators in Java - Review Insight [Page 42]

APPEARS IN

Avichal Computer Applications [English] Class 10 ICSE
Chapter 1.04 Operators in Java
Review Insight | Q 1. | Page 42
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×