A reference variable can be declared as a class type or an interface type.If the variable is declared as an interface type, it can reference any object of any class that impleme
You need to type cast it to get the access to the Parent methods
Parent
((Parent)objParent).displayName();