Which of the following statements is false?
1. Each class can be used only once to build many objects.
2. Reuse helps you build more reliable and effective systems, because existing classes and components often have undergone extensive testing, debugging and performance tuning.
3. Avoid reinventing the wheel—use existing high-quality pieces wherever possible. This software reuse is a key benefit of object-oriented programming.
4. Just as the notion of interchangeable parts was crucial to the Industrial Revolution, reusable classes are crucial to the software revolution that has been spurred by object technology.

Respuesta :

Answer:

The FALSE statement is Option 1

Each class can be used only once to build many objects.

Explanation:

In object-oriented programming, a class is a blueprint that can be reused unlimited times to build many objects. A class include two main components which is data components named as attributes/properties and method(s) that work on the data components for some specific purposes.

All the objects created from a same class will share the same set of attributes/properties and methods. Hence, building objects from a class can greatly reduce the code redundancy and prevent reinventing the wheel.