Q. Which C++ feature allows a function to be redefined in a derived class?
β
Correct Answer: (B)
Function Overriding
Explanation: Function overriding allows a function in a derived class to have the same signature as a function in the base class.