InterviewSolution
Saved Bookmarks
| 1. |
What will be the contents of jTextField1 and jTextField2 after executing the following code:String s = "Best";String r = "LucK";String z;z = r.concat(s);jTextField1.setText(z);jTextField2.setText(r.toUpperCase()); |
|
Answer» jTextField1 = LuckBest jTextField2 = LUCK |
|