Multiple Choice
Which of the following is false about interfaces
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, without 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
Q9: A class that implements an interface but
Q42: Unfortunately,polymorphic programs make it difficult to add
Q43: The keyword sealed is applied to methods
Q44: Classes and methods are declared sealed for
Q45: Constants declared in an interface are implicitly
Q46: You may define implementations for abstract methods
Q49: If a derived class reference is assigned
Q50: Consider the abstract class below:<br>Public abstract class
Q51: When a request is made to use
Q52: By convention,the name for a Car interface