Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Define a class named Car that has the following specifications: Two attributes: - plateNumber: to keep car's plate number as String value. - speed: to

image text in transcribed
Define a class named Car that has the following specifications: Two attributes: - plateNumber: to keep car's plate number as String value. - speed: to keep car's current speed as integer value. Seven methods: - Carf String pn, int s), a constructor method used to initialize the instantiated objects. - setPlateNumber ( String pn ), act as a set method for the attribute plateNumber. - setSpeed( int s), act as the set method for the attribute speed. - getPlateNumber 0 act as the get method for the attribute plateNumber. - getSpeedO, act as the get method for the attribute speed. - fines 0, returns the amount of traffic fine (500 SR) if car's speed exceeds 120k/h, otherwise 0. - main(..), act as the main method for the program, and it should do the following: 1. Instantiate three objects, namely car 1 , car2, and car3, using the populated constructor. 2. Change the speed value of the first car (carl) to 130. 3. Change the plate number of the second car (car2) to "Java123". 4. Print the following statement, The second car has the following plate number (plate number) and its current speed is (speed) 5. Using the fines 0 method, print the plate number and the current speed of the cars that have a current speed >=120

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

Database Application Development And Design

Authors: Michael V. Mannino

1st Edition

0072463678, 978-0072463675

More Books

Students also viewed these Databases questions

Question

What is the return on stockholders' equity (after tax) ratio?

Answered: 1 week ago