What Is The Meaning Of Object Oriented Programming?
Sign Up to our social questions and Answers Engine to ask questions, answer people's questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people's questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Amruta
Object Oriented Programming also known as OOP, is a type of computer programming based on the concept of objects which can contain data in the form of fields and code in the form of procedures or methods. The main feature of object oriented programming is that it enables reuse of objects with the help pf inheritance.
Following are some of the OOP concepts:
1. Class: It is the blue print of an object. It defines the common properties of object.
2. Abstraction: It is process of picking out common features of objects and procedures.
3. Encapsulation: This is a process of combining elements to create a new entity.
4. Inheritance: Process of inheriting features of one class to another.
5. Polymorphism: Using a method in multiple forms.