โ Back to Inheritance
Question 512
Base Constructor Runs First
Base Constructor Runs First
When you create a derived object, the base constructor runs before the derived constructor body.Motorcycleinherits fromEngine, whose constructor printsEngine ready. Complete theMotorcycleconstructor so it printsMotorcycle ready. Do NOT write aMainmethod. When the tester creates aMotorcycle, the program prints: Engine ready Motorcycle ready
Expected Output:
Engine ready Motorcycle ready
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.