CJCoding With Joseph
15per day

Abstract Appliance with Power Tracking

An abstract class Appliance is provided with a boolean isOn field (starts false), turnOn(), turnOff(), and an abstract method int powerUsage().

Create a WashingMachine class that extends Appliance.

Requirements:
1. powerUsage() returns 500 when the machine is on, and 0 when 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.