1char ch='A';
2String str="pple";
3str= ch+str; // str will change to "Apple"
11. String otherString = "helen" + character;
2
32. otherString += character;
1// Define a character
2char ch='A';
3// Define a string
4String str="pple";
5str= ch+str; // str will change to "Apple"