โ Back to Inheritance
Question 506
Puppy Uses Inherited Eat
Puppy Uses Inherited Eat
The base classAnimaldefines anEat()method that printsMunching. ThePuppyclass inherits fromAnimaland has aPlay()method. InsidePlay(), after printingPlaying, call the inheritedEat()method. Do NOT write aMainmethod. When the tester creates aPuppyand callsPlay(), the program prints: Playing Munching
Expected Output:
Playing Munching
Topics:
Inheritance
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.