Object-oriented programming (OOPs) Question:

What is an Interface?

Tweet Share WhatsApp

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 PDF Read All 37 OOP Questions
Previous QuestionNext Question
What is Virtual keyword?What is Static Method?