Computer Science, asked by thakuriprajawal, 1 month ago

What are the values of x and y when the following statements are executed? int a=56,b=40;
boolean x=(a int y=(a

Answers

Answered by rishithreddynelaturi
1

Answer:

int a = 63, b = 36;

boolean x = (a > b)? true : false;

int y = (a < b)? a : b;

Similar questions