InterviewSolution
Saved Bookmarks
| 1. |
How does OOP overcome the shortcomings of traditional programming approaches? |
|
Answer» OOP provides the following advantages to overcome the shortcomings of traditional programming approaches: OOPs is closer to real world model. Hierarchical relationship among objects can be well-represented through inheritance. Data can be made hidden or public as per the need. Only the necessary data is exposed enhancing the data security. Increased modularity adds ease to program development. Private data is accessible only through designed interface in a way suited to the program. |
|