Which type of function can a derived class override?
A.
A Protected Overridable member function
B.
A Shared function
C.
A Private Overridable function
D.
A non-overridable public member function
Explanation:
The Overridable modifier allows a property or method in a class to be overridden in a derived
class.
You cannot specify Overridable or NotOverridable for a Private method.