Q. What is the output of the following code snippet?
Code:
String s1 = “Hello”; String s2 = “World”; System.out.println(s1 + s2);
β
Correct Answer: (A)
HelloWorld
Explanation: In Java, the + operator can be used to concatenate two strings. In this case, s1 + s2 returns “HelloWorld”.