Consider the following code segment:
String newString = "Welcome";
String anotherString = "Home";
newString = anotherString + "Hello";
What is the value of newString?
Respuesta
HomeHello
HelloHello
WelcomeHello
Welcome Hello
Home Hello
Pregunta 2
Pregunta
Which of the following returns the last character of the string str?