Question: Consider the following code: public interface InterfaceA { void methodA(); } public interface InterfaceB extends Interface { void methodB(); } public class ClassA implements Interface

 Consider the following code: public interface InterfaceA { void methodA(); }public interface InterfaceB extends Interface { void methodB(); } public class ClassA

Consider the following code: public interface InterfaceA { void methodA(); } public interface InterfaceB extends Interface { void methodB(); } public class ClassA implements Interface { public void methodA() {} public void methodB() {} } public class ClassB extends ClassA implements InterfaceB{ public Class() {} // "... " } Which of the following statements causes a syntax error? Note: The " ... " above was meant to be placed there and should not be considered during this question. O InterfaceB obj = new ClassB(); InterfaceA obj = new ClassA(); O None of the answers are correct InterfaceA obj = new ClassB(); ClassA obj = new ClassB(); O All the statements will compile and do not cause a syntax error InterfaceB obj = new ClassA()

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!