MCQ Single Best Answer Not Set

QWhat will happen after compiling this program code?
abstract class MyClass{ //line 1
      private int a, b;

      public void call(int a, int b){
            this.a = a;
            this.b = b;
            System.out.print(a+b);
      }
}

public class Test{
      public static void main(String args[]){
            MyClass m = new MyClass(); //line 2
            m.call(12,25);
      }
}

ID: #2282 Java Interfaces And Abstract Classes MCQ 1,911 views
Question Info
#2282Q ID
Not SetDifficulty
Java Interfaces And Abstract Classes MCQTopic

Choose the Best Option

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

  • A Successful run and print 37
  • B Compilation error due to line 1
  • C Compilation error due to line 2
  • D Runtime error
Correct Answer: Option C

Explanation

Compilation error due to line 2

Share This Question

Challenge a friend or share with your study group.