Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

image text in transcribed

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

DB2 Universal Database V7.1 Application Development Certification Guide

Authors: Steve Sanyal, David Martineau, Kevin Gashyna, Michael Kyprianou

1st Edition

0130913677, 978-0130913678

More Books

Students also viewed these Databases questions