Final answer:
In object-oriented programming, if properties are specified in both the super and child classes, the data transform in the subclass overwrites anything already set by the data transform in the superclass. This is known as property overriding.
Step-by-step explanation:
The statement is True.
In object-oriented programming, when properties are specified in both the superclass and the subclass, the data transform in the subclass indeed overwrites anything already set by the data transform in the superclass. This is known as property overriding.
For example, let's say we have a superclass called 'Animal' with a property called 'name' set to 'Harry'. Then, in the subclass called 'Cat', we specify a new value for the 'name' property and set it to 'Whiskers'. In this case, the value of the 'name' property in the 'Cat' object would be 'Whiskers', overriding the value set in the superclass.