The SimpleCalculator class implements the functionality of a simple calculator that can add, subtract, and multiply integers. What type of object is SimpleCalculator?
a. Primitive object
b. Composite object
c. Concrete object
d. Abstract object

Respuesta :

Answer: c. Concrete object

Explanation:

The SimpleCalculator class represents a specific, tangible implementation of a calculator that performs arithmetic operations on integers. Concrete objects are tangible entities that can be directly instantiated and manipulated in a program. They represent specific instances of classes and provide actual functionality or behavior. Therefore, the SimpleCalculator class would be classified as a concrete object.