InterviewSolution
Saved Bookmarks
| 1. |
What will be the contents of Str1 and Str2 after the following code is executed?String Str2,Str1;Str1 = "Dear Friend";Str2 = "Hello";Str1 = Str2.concat(Str1) |
|
Answer» Str1 - HelloDear Friend Str2 - Hello |
|