A
Q. What will be the output of following java code?
Code:
public class Test{
public static void main(String... args){
int a=5 , b=6, c=7;
System.out.println("Value is "+ b + c);
System.out.println(a + b + c);
System.out.println("String " + (b+c));
}
}
public static void main(String... args){
int a=5 , b=6, c=7;
System.out.println("Value is "+ b + c);
System.out.println(a + b + c);
System.out.println("String " + (b+c));
}
}
- Correct Answer - Option(A)
- Views: 20
- Filed under category Java
- Hashtags:
Discusssion
Login to discuss.