InterviewSolution
Saved Bookmarks
| 1. |
What will be displayed in jTextArea1 after the execution of the following code:int G = 1;do {jTextArea1.setText(Integer.tostring(G + + ));G = G+1;} while (G<=5); |
|
Answer» The correct output 5 |
|