Question: In Java, a microwave control panel has four buttons: one for increasing the time by 30 seconds, one for switching between power levels 1 and
In Java, a microwave control panel has four buttons: one for increasing the time by 30 seconds, one for switching between power levels 1 and 2, a reset button, and a start button. Implement a class that simulates the microwave, with a method for each button. The method for the start button should print a message Cooking for ... seconds at level ....
Part 1.1: Implement the Microwave Object Class
As part of a Java application project, implement the Microwave class as described above. If you wish to add additional features, make sure they are clearly documented in the Microwave class definition (i.e., in the Microwave.java source code file).
Part 1.2: Test the Microwave Object Class
Also, add a main class (e.g., MicrowaveTester) with test code for the Microwave class:
Create a Microwave object.
Reset the Microwave.
Set the Microwave's cooking time to 2 minutes and 30 seconds.
Set the power level to 2.
Start the Microwave.
Reset the Microwave (time 0, power level 1).
Set the Microwave's cooking time to 5 minutes.
Start the Microwave.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
