โ Back to Inheritance
Question 432
Inherited Method Without Override
Inherited Method Without Override
A derived class automatically inherits the public methods of its base. Base classPrinter(already written) hasstring label() constreturning "PRINTER". Create a derived classLaserPrinterthat inheritslabel()UNCHANGED (do not redefine it) and adds a NEW methodstring type() constreturning "laser". The program prints the inherited label and the new type separated by one space: PRINTER laser Do NOT write a main function.
Expected Output:
PRINTER laser
Topics:
Inheritance
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.