What is the output of the following JAVA code?
String s = “exam:” + 9 + 9 + 9;
System.out.println(s);
1
exam ∶ 27
2
exam ∶ 9
3
exam 27
4
exam ∶ 999
What is the output of the following JAVA code?
String s = “exam:” + 9 + 9 + 9;
System.out.println(s);