CJCoding With Joseph

Base Constructor Runs First

When you create a derived object, the base constructor runs before the derived constructor body. Motorcycle inherits from Engine, whose constructor prints Engine ready. Complete the Motorcycle constructor so it prints Motorcycle ready. Do NOT write a Main method.

When the tester creates a Motorcycle, 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.