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

 Define a class named Car that has the following specifications: Two

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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!