Q78
What will be the output of the following Java program? class output public static void main(String args[]) String s1 = "one"; String s2 = s1 + " two"; System.out.println(s2);
A.
one
B.
two
C.
one two
AnswerD.
compilation error
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board