โ Back to Classes
Question 199
Abstract Appliance with Power Tracking
Abstract Appliance with Power Tracking
An abstract classApplianceis provided with aboolean isOnfield (starts false),turnOn(),turnOff(), and an abstract methodint powerUsage(). Create aWashingMachineclass that extendsAppliance. Requirements: 1.powerUsage()returns500when the machine is on, and0when off. 2. No constructor needed (default is fine). Do NOT write a main method.
Expected Output:
0 500 0
Topics:
Abstract ClassesClasses
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.