- Oops concepts are the rules which are supposed to be satisfied by a programming language in order to call that programming language as an Object Oriented Programming Language
- The three oops concepts are
i.Encapsulation
ii. Polymorphism
iii.Inheritance - Encapsulation:
The process of binding the data with corresponding functions. - Polymorphism:
Defining multiple methods with same name. - Inheritance:
Getting the properties from one class object to another class object
No comments