Overriding concept
A and B both have same method as:-
void show() {
<-----
------>
}
Now in class B we also define show method with some other definition.
We say now show method is overridden.
But now i want to access the base class's show method using object of derived class.
Can we do that ?