Correct answer is : C
When sub class and super class both have a method with same name and the method is invoked using sub class instance, then the sub class method will be executed.
in printme of SubClass , it will print 'In SUB class method'.
Also in the same method we are calling the SuperClass 's printme method.
So 'In SUPER class method' also be printed. The output will be
Comment here: