Multiple choice

The objective of object oriented programming is

  1. to manage the complexities of a software

  2. to increase the complexity of a software

  3. to implement procedures

  4. none of these

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Object-Oriented Programming (OOP) was specifically designed to manage software complexity by organizing code into reusable objects with encapsulated data and behavior. OOP doesn't aim to increase complexity (which would be counterproductive) nor is it primarily about implementing procedures (that's procedural programming). The core philosophy of OOP is complexity management through abstraction, inheritance, and encapsulation.