InterviewSolution
Saved Bookmarks
| 1. |
What will be the value of X1 after executing of the following code:String X1 = "Spread", X2 = "PEACE";X1 = X2.concat (X1); |
|
Answer» Output PEACESpread |
|