Multiple Choice
Which of the statements below has no valid value for initializing a String variable?
How do we call the special characters in a string that are preceded with a backslash
\
?What is an immutable object?
How many
String
object will exist at the end of the following code block?String hello = "Hello"; String world = " World"; String bye = "Bye"; String greeting = hello + world; String goodbey = bye + world;
Last updated