πŸ“Š JAVA
Q. What will be the output when the following program is compiled and executed?
abstract class TestAbstract{
String my_name;
String myName(){
my_name = "Examveda";
return my_name;
}
abstract void display();
}

public class Test extends TestAbstract{
void display(){
String n = myName();
System.out.print("My name is "+ n);
}

public static void main(String args[]){
Test t = new Test();
t.display();
}
}
  • (A) Program will compile and execute successfully and prints
  • (B) Compilation error as class can not be declared as abstract.
  • (C) Program compiles but leads to runtime exception.
  • (D) Program compiles but leads to runtime exception. D. Compilation error occurs as the abstract class TestAbstract contains a non-abstract method.
πŸ’¬ Discuss
βœ… Correct Answer: (A) Program will compile and execute successfully and prints

Explanation: The options B, C and D are incorrect options as in Java we can declare an abstract class comprising of abstract and non-abstract methods that will not lead to any compilation error. Therefore, option A is the correct answer implying that the 't' instance of Test class invokes the display method, which is implemented in the Test class. The display method invokes myName() method declared int the TestAbstract class and prints the name.

Explanation by: Neelam Mittal
The options B, C and D are incorrect options as in Java we can declare an abstract class comprising of abstract and non-abstract methods that will not lead to any compilation error. Therefore, option A is the correct answer implying that the 't' instance of Test class invokes the display method, which is implemented in the Test class. The display method invokes myName() method declared int the TestAbstract class and prints the name.

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
105
Total Visits
πŸ“½οΈ
1 y ago
Published
πŸŽ–οΈ
Neelam Mittal
Publisher
πŸ“ˆ
85%
Success Rate