Can we call a virtual method in base class using extended class handle/object?

In reply to Manoj J:

Calling super.virtual_method() calls the previous virtual_method() from class that the current method was extended from. If there are multiple levels of inheritance with multiple virtual_method() overrides, you skip over levels of extension by calling base_class::virtual_method() directly.