What should be used to call the base class method from the derived class if function overriding is used in Java?

What should be used to call the base class method from the derived class if function overriding is used in Java? Correct Answer Keyword super

The keyword super must be used to access base class members. Even when overriding is used, super must be used with the dot operator. The overriding is possible.

Related Questions