ICSE Class 9 Computer Applications
Question 7 of 17
Introduction to Object Oriented Programming Concepts — Question 7
Back to all questions 7
Question Question 7
What are the characteristics of object-oriented programming?
The characteristics of object-oriented programming are:
- It follows a bottom-up approach.
- The program resulting from object-oriented programming is a collection of objects. Each object has its own data and a set of operations.
- OOP restricts the free movement of data and the functions that operate on it.
- A properly defined class can be reused, giving way to code reusability.
- The concept of object-oriented programming models real-world entities very well.
- Due to its object-oriented approach, it is extremely useful in solving complex problems.