Computer Science
What is meant by Object Oriented Programming? Name all the principles of Object Oriented Programming.
Objects & Classes
15 Likes
Answer
Object Oriented Programming is a modular approach of programming that gives stress to data over functions. It decomposes the program into a number of entities called Objects. Each Object contains data and functions to operate on that data. Objects cannot access each other's data, they only communicate through functions.
The principles of Object Oriented Programming are:
- Abstraction
- Encapsulation
- Inheritance
- Polymorphism
Answered By
11 Likes
Related Questions
State whether the following statement is True or False :
Class is also called an instance of an Object.
State whether the following statement is True or False :
The class variables are also called as static variables.
What are the features of Object Oriented Programming? Explain.
Explain the terms Class and Object with the help of real world examples.