Object-oriented programming (OOPs) Question:

Download Job Interview Questions and Answers PDF

What is an Interface?

OOP Interview Question
OOP Interview Question

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?