Computer Science
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.
Two OOP languages are:
- Java
- C++
Related Questions
State whether the following statement is True or False :
Once an object is created, it means the data can be accessed outside the object.
State whether the following statement is True or False :
Encapsulation promotes data sharing among the objects.
Name any two OOP's principles.
What are the features of OOP?