Super() is used to invoke the super class version method from the subclass. If we call the methods without the super then the overridden version of the method is called.
class A {
x(){}
}
class B {
x(){
super.x();
}
}
class A {
x(){}
}
class B {
x(){
super.x();
}
}