Java Programming Language MCQ Inheritance in Java MCQ
⚠ Report ✓ Question Verified Copy Link
interface A{ public void method1(); } class One implements A{ public void method1(){ System.out.println("Class One method1"); } } class Two extends One{ public void method1(){ System.out.println("Class Two method1"); } } public class Test extends Two{ public static void main(String[] args){ A a = new Two(); a.method1(); } }
Learn More MCQ Questions from Java Programming Language MCQ Inheritance in Java MCQ