1.

What will be displayed in jTextArea 1 after the following code is executed:int i;for(i = 10; i<50; i= i + 30){i = j + 15;jTextArea1.append(" " + i);}jTextArea1.append("/n" +i);

Answer»

After executed

output:

25



Discussion

No Comment Found