Hello,
1) The concept behind the function overriding is that it defines functions within the base and derived class with the same signature and name.
2) Function overriding feature that allows us to have the same function in child class which is already present in the parent class.
3) A child class inherits the data members and member functions of a parent class.
4) Function Overriding used when you want to override the functionality of parent class in the child class.
5) It provides multiple definitions of the function by the change in parameters and datatype of parameters.
6) It is like creating a new version of an old function, in the child class.
Regards,
Nitesh Bavishiya