Home / Programming MCQs / JAVA MCQs / Question

K

Kirti • 10.32K Points
Tutor II

Q. What is the output of the following code snippet?

Code:
String s1 = “Hello”;
String s2 = “World”;
System.out.println(s1 + s2);
(A) HelloWorld
(B) Hello World
(C) Error
(D) None of the above

Explanation:

In Java, the + operator can be used to concatenate two strings. In this case, s1 + s2 returns “HelloWorld”.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.