Computer Science, asked by kranshu04, 9 months ago

int x=10, y=5;
if(++x <y++);
System.out.print(x + "is big");​

Answers

Answered by a321038
0

Answer:

10 is big

Explanation:

it will compare 11 and 6 as in ++X change then use rule will apply so X will become 11 and also in y++ X value will be incremented because the complete expressions value is checked and it is not an arithmetic operation

Similar questions