Object Oriented Programming (OOPs)
© examsiri.com
Question : 10 of 72
Marks:
+1,
-0
Given:
What is the result?
1. interface A { public void aMethod(); }
2. interface B { public void bMethod(); }
3. interface C extends A,B { public void cMethod(); }
4. class D implements B {
5.   public void bMethod(){}
6. }
7. class E extends D implements C {
8.   public void aMethod(){}
9.   public void bMethod(){}
10.   public void cMethod(){}
11. }What is the result?
Go to Question: