I have an object of a subclass extending its superclass. There is an overridden method in subclass which can be called using the object.
Is that possible to call the superc
No, it's not possible, and if you think you need it, rethink your design. The whole point of overriding a method is to replace its functionality. If a different class knows that much about that class's internal workings, you're completely killing encapsulation.