Which of the following best describes object-oriented design?
A.
A representation of a real-world problem and maps it to a software solution using object oriented programming.
B.
The process of classifying objects that will be appropriate for a solution.
C.
A problem is analyzed to determine the classes of objects to be used in the application.
D.
Disconnecting data objects and processing operations.
Explanation:
Object-oriented analysis (OOA) is the process of classifying objects that will be appropriate for a solution. A problem is analyzed to determine the classes of objects to be used in the application. Object-oriented design (OOD)creates a representation of a real-world problem and maps it to a software solutionusing OOP. The result of an OOD is a design that modularizes data and procedures.The design interconnects data objects and processing operations.