Question: Write the Java code segments to answer the questions below. Use the compiler to make sure your code is correct. 1. Define a class called
Write the Java code segments to answer the questions below. Use the compiler to make sure your code is correct. 1. Define a class called Vehicle. Give it a String attribute name, an integer attribute price, and a double attribute currentSpeed. 2. Create a default constructor that requires name and price as parameters, setting currentSpeed to 0.0. 3. Write appropriate get- and set-methods for the name and price attributes. Write a get-method for currentSpeed. 4. Write an accelerate method. It should take a double as a parameter, and add it to the currentSpeed. 5. Write a printInfo method to print all attributes of Vehicle.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
