Multiple Choice
Which of the following statements about interfaces is false?
A) An interface describes a set of methods that can be called on an object,providing a default implementation for the methods.
B) An interface describes a set of methods that can be called on an object,not providing concrete implementation for the methods.
C) Interfaces are useful when attempting to assign common functionality to possibly unrelated classes.
D) Once a class implements an interface,all objects of that class have an is-a relationship with the interface type.
Correct Answer:

Verified
Correct Answer:
Verified
Q3: Which of the following statements about abstract
Q4: Which keyword is used to specify that
Q9: A class that implements an interface but
Q13: Classes and methods are declared final for
Q15: If the superclass contains only abstract method
Q15: Which of the following does not complete
Q18: For which of the following would polymorphism
Q19: Consider classes A,B and C,where A is
Q24: An interface may contain:<br>A)private static data and
Q33: Interfaces can have _methods.<br>A) 0<br>B) 1<br>C) 2<br>D)