Question: The method 'sample' will return 'Inside Parent class'. O It generates a compile-time error since only a public instance method in the superclass can be

 The method 'sample' will return 'Inside Parent class'. O It generates

The method 'sample' will return 'Inside Parent class'. O It generates a compile-time error since only a public instance method in the superclass can be overridden in the subclass. The method 'sample' will return 'Inside child class'. O It generates a compile-time error since a private instance method in the superclass can't be made public in the subclass. The following is the Pseudo-code fragment that defines the overriding method in the class extension. 1 class Parent defines: 2 Private method sample ( ) 3 Print as 'Inside Parent class'; 4 end 5 class child extends class Parent and defines : 6 Public method sample ( ) 7 Print as 'Inside child class'; 8 end 9 The main function defines : 10 Create object c for the class child; 11 invoke method sample using the object c; 12 end What will be the expected output for the framed code when the method 'sample' is invoked using the object created for the class 'child

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!