InterviewSolution
Saved Bookmarks
| 1. |
What will be the content of the jTextArea1 after executing the following code :(Assuming that the jTextArea1 had no content before executing this code)?for (int = C = 1; C = 4; C++){jTextArea1.setText()jTextArea1.getText() + " " + Integer.toString(C*C));} |
|
Answer» 1. Syntax Error 2. Program will not Compile 3. No output |
|