Write a class named Car that has the following fields: The yearModel field is an int that holds the car’s year model. The make field references a String object that holds the make of the car. The speed field is an int that holds the car’s current speed.   In addition, the class should have the following constructor and other methods. The constructor should accept the car’s year 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. Constructor: The constructor should accept no arguments. Constructor: The constructor should accept the car’s year as argument.Assign the value to the object’s yearModel.  No need to assign anything to the make and assign 0 to speed. Appropriate mutator methods should set the values in an object’s yearModel, make, and speed fields. Appropriate accessor methods should get the values stored in an object’s yearModel, make, and speed fields. The accelerate method should add 5 to the speed field each time it is called. The brake method should subtract 5 from the speed field each time it is called.   Prompt the user to enter year and make of the car.   Demonstrate the class in a program that creates a Car object, and then calls the accelerate method five times using a loop.  After each call to the accelerate method, get the current speed of the car and display it. Then call the brake method five times using a loop.  After each call to the brake method, get the current speed of the car and display it.

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter4: More Object Concepts
Section: Chapter Questions
Problem 11PE
icon
Related questions
Question

 java

Assignment Description:

 

Write a class named Car that has the following fields:

  • The yearModel field is an int that holds the car’s year model.
  • The make field references a String object that holds the make of the car.
  • The speed field is an int that holds the car’s current speed.

 

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

  • The constructor should accept the car’s year 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.
  • Constructor: The constructor should accept no arguments.
  • Constructor: The constructor should accept the car’s year as argument.Assign the value to the object’s yearModel.  No need to assign anything to the make and assign 0 to speed.
  • Appropriate mutator methods should set the values in an object’s yearModel, make, and speed fields.
  • Appropriate accessor methods should get the values stored in an object’s yearModel, make, and speed fields.
  • The accelerate method should add 5 to the speed field each time it is called.
  • The brake method should subtract 5 from the speed field each time it is called.

 

Prompt the user to enter year and make of the car.

 

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

 

Sample output:

Current status of the car:
Year model: 2004
Make: Porsche
Speed: 0

Accelerating...

Now the speed is 5

Now the speed is 10

Now the speed is 15

Now the speed is 20

Now the speed is 25


Braking...
Now the speed is 20
now the speed is 15

Now the speed is 10

Now the speed is 5

Now the speed is 0

 

 

Additional Notes/Requirements:

  • Always use variables instead of hardcoded values.
  • Add comments.
  • Format the program properly e.g. indentation, brackets line up, etc. similar to the book examples.
  • Instance variables should be declared as private
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

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
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT