#object-oriented-programming
Read more stories on Hashnode
Articles with this tag
User-Defined Derived Data types There are some derived data types that are defined by the user. These are class , structure , union and...
Four Pillars of object oriented programming are -> Encapsulation Polymorphism Abstraction Inheritance Encapsulation The wrapping up of data and...
Object Oriented Programming Here emphasis is on objects. It follows bottom up approach in program design. Its data hiding feature prevents...
Call by Value The call by value method copies the values of actual parameters into formal parameters , that is the function creates its own copy of...
Function Overloading When multiple functions declared in the same scope having same name but differ in arguments passed to it (number of arguments ,...