InterviewSolution
Saved Bookmarks
| 1. |
Aryamani is creating a simple application in Java called "Name Concatenator" in which he needs to concatenate the first name, middle name and last name input by the user in separate text fields. Name a method and an equivalent operator for this purpose. |
|
Answer» Str.concat(str) Operator '+' can be used |
|