super() is used to call the immediate parent . super() can be used with instance members, i.e., instance variables and instance methods. super() can be used within a constructor to call the constructor of the parent class.
Read moreCan we call super method in Java?
Private methods of the super-class cannot be called. Only public and protected methods can be called by the super keyword . It is also used by class constructors to invoke constructors of its parent class.
Read more