Calling a non-virtual method, decided at a compile time is known as early binding. Calling a virtual method (Pure Polymorphism), decided at a runtime is...
Behaving in different ways depending upon input receive is know as polymorphism. i.e. whenever input changes automatically output or behavior also changes. There are basically...
Abstraction which denotes/shows the essential characteristics of an object which distinguish it from all other kinds of objects.Ex. Consider a person details.Doctor needs || Interviewer...
Static Class: Declared with Static keyword, methods in Static Class are also static along with variables of the class. This class cannot be instantiated, i.e...