1.

What will be the content of the jTextArea1 after executing the following code:int n = 89;jTextArea1.setText(Integer.toString(++n));

Answer»

The correct output

90



Discussion

No Comment Found