Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Create a New Java Project called YourLastNameVehicleClass . Write a class named Vehicle that has the following fields: make : a String that holds the

Create a New Java Project called YourLastNameVehicleClass.

Write a class named Vehicle that has the following fields:

  • make: a String that holds the make of the car
  • model: an String that holds the model of the car
  • tankSize: an int that holds the car's gas tank size in gallons

NOTE: The Vehicle Class is a new class within your project. It should be defined as a separate file. This does not affect the name of your Java Project above.

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

  • Constructor: accepts the car's make, model, and tankSize as arguments. These values should be assigned to the object's make, model, and tankSize fields, respectively.
  • Accessors: appropriate accessor methods should get the values stored in an object's make, model, and tankSize fields. Be sure to use the required naming convention for all accessor methods from the Programming Guidelines.
  • distance: This method should calculate and display the distance the vehicle can travel on one tank of gas when driven in town and when driven on the highway. Assume the vehicle averages 25 miles per gallon when driven in town and 38.5 miles per gallon when driven on the highway.
    • Hint: The following formula can be used to calculate the distance:

      Distance = Number of Gallons X Average Miles per Gallon

Demonstrate the class in a program that creates a Vehicle object, and then calls the distance method. Be sure to display the make, model, tankSize, and distance. The distance should be displayed with no more than three (3) decimal places. Each output should be labeled clearly.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

The Database Factory Active Database For Enterprise Computing

Authors: Schur, Stephen

1st Edition

0471558443, 9780471558446

More Books

Students also viewed these Databases questions

Question

Convert 12% annual rate, compounded weekly into simple annual rate

Answered: 1 week ago

Question

Be familiar with the integrative servicescape model.

Answered: 1 week ago

Question

Understand the role of corporate design in communications.

Answered: 1 week ago