A
Q. 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);
}
}
- Correct Answer - Option(C)
- Views: 9
- Filed under category Java
- Hashtags:
Discusssion
Login to discuss.