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.