What is the purpose of the super() statement in a subclass constructor?
super()
It initializes the instance variables of the subclass.
It calls the constructor of the superclass.
It is not required in subclass constructors.
It refers to the superclass.