Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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 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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started