Java Class/Program - DriveMyCar

Create a Java Class/Program named DriveMyCar that displays the order of tasks to operate an automobile.

For this assignment, I need you to create several Java void methods.

Create a method that displays "Strap seat belt, check mirrors".
Create a method that displays "Drive to destination….".
Create a method that displays "Unlock your car".
Create a method that displays "Start car's engine".
Create a method that displays "Find your car".
Create a method that displays "Give address to GPS".
Call each of these methods from main() in the order that you believe these tasks should be done. While this order can vary, it still needs to be in a

practical order.

Grading Note: The method names need to be descriptive of the task. Method names like "Step1", "Step2" do not indicate what the method is doing.

Use .println() instead of .print().

Sample Solution