ava program Car Maintenance: This assignment will assess your understanding of void and value returning static methods. Your cousin owns an automotive maintenance shop that performs routine maintenance on cars. He has asked you to write a program that will provide a list of services (and their respective prices) to users and allow them to choose any, or all, services they would like and display the final price, including a 28% labor charge, a 9% markup if the car is an import, and an 8% sales tax. Task To accomplish the above, do the following: • Write the two methods outlined below. • Test your program and screenshot your successful test.       carMaintenance method This method should accept the make of the car as a parameter (e.g., BMW, Ford, Ferrari, etc.). It should display the services and their prices as follows: Services: Oil Change, Tune up, Brake Job, Transmission Service, respectively: 59.99, 111.99, 189.99, 149.99 These should be stored in parallel arrays. Ask the user to select a service from the list presented for his . Allow the user to request as many services as he wants. Use an accumulator to total the price for all services requested. This method should return the total price to main. Do not call the calcFinalPrice method inside of this method – the point here is for you to write a method that returns a value.   calcFinalPrice method This method should accept, as a parameter, the total price that was passed to main from the carMaintenance method and whether or not the car is an import. This method should add 28% to the price for labor. Then, take on 9% if the car is an import. Then an 8% sales tax. Finally, the method should output the final price. Do not return the final price here, simply print from this method. To test your methods in main, Ask the user for the appropriate information needed to pass to your methods (hint: you will only need to ask for 2 things). Invoke (call) each method, passing the appropriate information. Hints • Before invoking (calling) your methods consider asking the user for both the make and if the car is an import. Use an if statement to turn the yes or no response into a boolean. • Adding 28% to the price, then 8% is not the same as adding 36%. For example, if the cost is $100, 28% + 8% is $138.24. At 36%, this price is $136.00. • For your output screenshot, also include the following scenario: an Oil Change, Tune up, and Brake Job for an import would be 361.97 before taxes and labor and 545.42 after. See attached screenshot

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Java program

Car Maintenance: This assignment will assess your understanding of void and value returning static methods.

Your cousin owns an automotive maintenance shop that performs routine maintenance on cars. He has asked you to write a program that will provide a list of services (and their respective prices) to users and allow them to choose any, or all, services they would like and display the final price, including a 28% labor charge, a 9% markup if the car is an import, and an 8% sales tax. Task To accomplish the above, do the following:

• Write the two methods outlined below.

• Test your program and screenshot your successful test.

      carMaintenance method

This method should accept the make of the car as a parameter (e.g., BMW, Ford, Ferrari, etc.). It should display the services and their prices as follows: Services: Oil Change, Tune up, Brake Job, Transmission Service, respectively: 59.99, 111.99, 189.99, 149.99 These should be stored in parallel arrays. Ask the user to select a service from the list presented for his . Allow the user to request as many services as he wants. Use an accumulator to total the price for all services requested. This method should return the total price to main. Do not call the calcFinalPrice method inside of this method – the point here is for you to write a method that returns a value.

  calcFinalPrice method

This method should accept, as a parameter, the total price that was passed to main from the carMaintenance method and whether or not the car is an import. This method should add 28% to the price for labor. Then, take on 9% if the car is an import. Then an 8% sales tax. Finally, the method should output the final price. Do not return the final price here, simply print from this method.

To test your methods in main, Ask the user for the appropriate information needed to pass to your methods

(hint: you will only need to ask for 2 things). Invoke (call) each method, passing the appropriate information.

Hints

• Before invoking (calling) your methods consider asking the user for both the make and if the car is an import. Use an if statement to turn the yes or no response into a boolean.

• Adding 28% to the price, then 8% is not the same as adding 36%. For example, if the cost is $100, 28% + 8% is $138.24. At 36%, this price is $136.00.

• For your output screenshot, also include the following scenario: an Oil Change, Tune up, and Brake Job for an import would be 361.97 before taxes and labor and 545.42 after.

See attached screenshot
----JGRASP exec: java Assignment4MethodsFALL2020
What is the Make of your Car?
BMW
Is your Car an Import Model?
yes
Services: Oil Change, Tune Up, Brake Job, Transmission Service
Prices, respectively: 59.99, 111.99, 189.99, 149.99
Please select the services that you want for your BMW
Oil Change : Please enter Y or N =
Y
Tune Up : Please enter Y or N =
Y
Brake Job : Please enter Y or N =
Y
Transmission Service : Please enter Y or N =
N
Total Price before Tax and labor = 361.97
The Final Price with Taxes and Labor = 545.42
----JGRASP: operation complete.
► L
Transcribed Image Text:----JGRASP exec: java Assignment4MethodsFALL2020 What is the Make of your Car? BMW Is your Car an Import Model? yes Services: Oil Change, Tune Up, Brake Job, Transmission Service Prices, respectively: 59.99, 111.99, 189.99, 149.99 Please select the services that you want for your BMW Oil Change : Please enter Y or N = Y Tune Up : Please enter Y or N = Y Brake Job : Please enter Y or N = Y Transmission Service : Please enter Y or N = N Total Price before Tax and labor = 361.97 The Final Price with Taxes and Labor = 545.42 ----JGRASP: operation complete. ► L
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Class
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education