A car rental company has offices in cities in Spain and Portugal. It manages its cars as a large, unsorted collection of rental objects that is accessed by a Java program.
The following UML diagram describes the current main Rental class. Fuel type and transmission type were chosen to be Boolean because they have two choices: petrol or diesel for fuel type, and manual or automatic for transmission type.
The brand and the model of the car are stored together as one string brandModel. Typically the company has many cars of the same brand and model.
(a) Outline the general nature of an object. [2]
(b) State one mutator method to be included in the class Rental. [1]
(c) Construct the code for the accessor method getBrandModel(). [3]
(d) Outline one purpose of a default constructor. [2]
(e) Outline one change that needs to be made to class Rental due to this development. [2]
(f) State the relationship between Rental and Car. [1]
(g) Construct the code for the class Car without having to duplicate all the attributes and methods from the class Rental. The default constructor of the class Rental should be overridden to also assign the value 4 to numberOfDoors. No other constructors are required. [3]
(b) Construct the code for the method findBrandModels() that will take the array allCars as a parameter. It must return a Car array that contains every brandModel that is available without duplication. [8]
A customer wants to see which different types of cars are available. The criteria are it must be a petrol car with automatic transmission and cost less than 35 euros per day.
(c) Without writing code, outline the steps needed for a method to perform this query and present the results to the customer. [5]