Single Choice Not Set

QDetermine output:
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));
      }
}

ID: #2133 Operator in Java 536 views
Question Info
#2133Q ID
Not SetDifficulty
Operator in JavaTopic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A Value is 67 18 String 13
  • B Value is 13 18 String 13
  • C Value is 13 18 String
  • D Compilation fails
Correct Answer

Explanation

Value is 67 18 String 13

Share This Question

Challenge a friend or share with your study group.