Object-oriented programming (OOPs) Question:
Download Questions PDF

What is an Interface?

Answer:

An interface is a contract & defines the requisite behavior of generalization of types.

An interface mandates a set of behavior, but not the implementation. Interface must be inherited. We can't create an instance of an interface.

An interface is an array of related function that must be implemented in derived type. Members of an interface are implicitly public & abstract.

An interface can inherit from another interface.

Download OOP Interview Questions And Answers PDF

Previous QuestionNext Question
What is Virtual keyword?What is Static Method?