Question: b) Given the following Queue and vehicle ADT classes below: class Vehicle { private String vehicleName; //Exora, Myvii, x50 private String vehicleType ; //MPV, Sedan,

 b) Given the following Queue and vehicle ADT classes below: class

b) Given the following Queue and vehicle ADT classes below: class Vehicle { private String vehicleName; //Exora, Myvii, x50 private String vehicleType ; //MPV, Sedan, SUV private String vehicleRegistrationDate ; //ddmmyyyy private double vehiclePrice ; //RM40000, RM1 70000 /*** Definition of other methods including normal constructor, mutators, accessors and toString(). **/ } class Queue public Queue () {...} public void enqueue (Vehicle data) {...} public Vehicle de queue () {...} public boolean is Empty() {...} } RSWZ Used Car company uses a system to store and keep track of its used car's record by using the queue data structure. Assume that the data have been stored into a queue named queueVehicle, answer the following questions. i. Find and display how many used cars were registered in the year 2017. (Note: In order to avoid data loss, use a temporary queue to store the information.) (4.5 marks) ii. Move all Exora cars which priced less than RM170,000.00 into queueExora while the other Exora cars remain in the original queue. (4 marks)

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!