โ Back to Inheritance
Question 516
Abstract Shape Area
Abstract Shape Area
TheabstractclassShapedeclares an abstract methodArea()with no body. Every concrete subclass must implement it. ImplementArea()inRectangleso it returnswidth * height. Do NOT write aMainmethod. When the tester creates aRectangle(3, 4)and prints itsArea(), the program prints: 12
Expected Output:
12
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.