Question: Step 1 - Create 6 functions ( methods) as defined below. Each method needs to display a single statement using cout. Call these methods from

Step 1 - Create 6 functions ( methods) as defined below. Each method needs to display a single statement using cout. Call these methods from the main() method in an order that you believe is practical. I recommend that main() be the last method in the program.

Name each method using the same naming standard for variables - including using a descriptive name that should indicate the general purpose of the method. ( Avoid step1, step2, etc)

  1. Create a method that says "Start your Engine".
  2. Create a method that says "Find your Keys".
  3. Create a method that says "Activate your GPS".
  4. Create a method that says "Drive to Destination".
  5. Create a method that says "Buckle up and adjust seat and mirrors".
  6. Create a method that says "Get inside the car".

There is some variance in the expected called order. However, the order still needs to be practical.

Step 2 - The last task is to create a method called "parked". It needs to have a string argument defined. From the main() method, call the parked method and pass it the name of a car brand. This can be a literal string in quotes.

The parked method should the display the following - with ***** being the passed car brand.

My ***** is now parked.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!