+2 votes
in Class 12 by kratos

What will be displaced in of jTextField1 after executing the following code?

int m = 16;

m = m+1;

if(m<15)

jTextField1.setText(Integer.toString(m));

else

jTextField1.setText(Integer.toString(m + 15));

1 Answer

+6 votes
by kratos
 
Best answer

The correct output

32

...