Which among the following best describes member function overriding?

Which among the following best describes member function overriding? Correct Answer Member functions having same name in base and derived classes

The member function which is defined in base class and again in the derived class, is overridden by the definition given in the derived class. This is because the preference is given more to the local members. When derived class object calls that function, definition from the derived class is used.
Bissoy MCQ

Related Questions

Which of the following best describes member function overriding?
Which feature of OOP is exhibited by the function overriding?
Which is the correct condition for function overriding?
What should be used to call the base class method from the derived class if function overriding is used in Java?
Which among the following best describes member functions?
Which among the following best describes the inline member functions?