Asked by Furqaan Sayed on Jun 30, 2024

verifed

Verified

One of the driving forces in the creation of object-oriented languages was the inability of procedurally structured code to be extended easily without extensive revisions, retesting, and reevaluations.

Procedurally Structured Code

Code organized around the concept of procedure calls, where the flow of the program is structured through functions or procedures.

  • Understand key principles of object-oriented programming, such as polymorphism, and its impact on software development.
verifed

Verified Answer

RB
romina ballaJul 02, 2024
Final Answer :
True
Explanation :
Object-oriented languages were indeed developed to address the limitations of procedural programming languages, including difficulties in extending and maintaining code. Object-oriented programming (OOP) introduces concepts such as inheritance, encapsulation, and polymorphism, which allow for more modular, reusable, and adaptable code, making extensions and revisions more manageable.