Select from following answers:- If a base class has virtual methods, we can override them in derived classes

- If a base class has abstract methods, we can override them in derived classes
- Both of the above
- None of the above
- All Above
Virtual methods are meant to be overridden in the derived classes. Else the default one of the base class gets executed.Abstract methods are methods without bodies. So it needs concrete implementation in the derived class and not overriding.
Show Correct Answer
Asked In: Many Interviews |
Alert Moderator