How to access the overridden method of base class from the derived class?
A
Using arrow operator
B
using dot operator
C
using scope resolution operator
D
Can't be accessed once overridden
Correct Answer: using scope resolution operator
Scope resolution operator :: can be used to access the base class method even if overridden. To access those, first base class name should be written followed by the scope resolution operator and then the method name.