Design a class named Car that has the following fields:

  • yearModel: The yearModel field is an Integer that holds the car's year model.
  • make: The make field references a String that holds the make of the car.
  • speed: The speed field is an Integer that holds the car's current speed.

In addition, the class should have the following constructor and other methods:

  • Constructor: The constructor should accpet the car's year model and make as arguments. These values should be assigned to the object's yearModel and make fields. The constructor should also assign 0 to the speed field.
  • Accessors: Design appropriate accessor methods to get the values stored in an object's yearModel, make, and speed fields.
  • accelerate: The accelerate method should add 5 to the speed field each time it is called.
  • brake: The brake method should subtract 5 from the speed field each time it is called.

Next, design a program that creates a Car object, and then calls the accelerate method five times. After each call to the accelerate method, get the speed of the car and display it. Then call the brake method five times. After each call to the brake method, get the current speed of the car and display it.

Academic Honesty!
It is not our intention to break the school's academic policy. Posted solutions are meant to be used as a reference and should not be submitted as is. We are not held liable for any misuse of the solutions. Please see the frequently asked questions page for further questions and inquiries.
Kindly complete the form. Please provide a valid email address and we will get back to you within 24 hours. Payment is through PayPal, Buy me a Coffee or Cryptocurrency. We are a nonprofit organization however we need funds to keep this organization operating and to be able to complete our research and development projects.