Difference between Runtime Polymorphism and Compile time Polymorphism
Polymorphism means “Poly mean Multiple” + “Morph means Forms” . It is one feature of Object Oriented Paradigm having ability of taking more than one form. Generally in Polymorphism we…
Difference between Constructor and Destructor | Constructor vs. Destructor
Difference Between Constructor and Destructor Constructor and destructor are the special methods of every class. Constructor Destructor Purpose Constructor is used to initialize the instance of a class. Destructor destroys…
Procedure Oriented Programming vs. Object Oriented Programming
Difference Between Procedure Oriented Programming (POP) & Object Oriented Programming (OOP) Procedure Oriented Programming Object Oriented Programming Divided Into In POP, program is divided into small parts called functions. In…