Message on Whatsapp 8879355057 for DSA(OA + Interview) + Fullstack Dev Training + 1-1 Personalized Mentoring to get 10+LPA Job
0 like 0 dislike
1,210 views
in Online Assessments by Expert (46,090 points) | 1,210 views

1 Answer

0 like 0 dislike
Best answer

You have to design and implement a Vehicle Rental Service which allows users to rent a given type of Vehicle for a given time slot.

 

Requirements:

 

1. This Vehicle Rental Service will be operational only in one city (Delhi) which will have multiple branches (eg. Vasant Vihar Branch, CP branch, etc).
2. Each branch can have three different types of vehicles (VehicleType) : Sedan, Hatchback, SUV. There could be any number of vehicles of each type in a branch.
3. The rental price per hour should be defined at “per branch per vehicle type” level and NOT at an individual vehicle level. (eg. Sedan in CP branch = 150 rs/hr, Sedan in Vasant Vihar = 100 rs/hr, Hatchback in CP = 80rs/hr and so on)
4. A user can request to rent a particular vehicle type for a given time slot. You will have to allot the vehicle from one of the branches if available for the given time slot with the “lowest rental price” strategy.

 

The following APIs have to be implemented:
Note: The given parameters are the mandatory parameters, you are free to add more parameters as part of your apis if you feel the need to do so. The return type of each api is up to you but make sure it provides the relevant information needed.

 

addBranch(branchName)
This will add a new branch for your Service.

allocatePrice(branchName, vehicleType, price);
This will be used to define price per vehicle type per branch

addVehicle(vehicleId, vehicleType, branchName);
This will add a new vehicle of the given vehicle type in a given existing branch.

bookVehicle(vehicleType, startTime, endTime)
This will be used to rent a vehicle for the given vehicle type for a given time slot defined by Start time and end time. You can expect the start time and endTime to be in hourly slots only.

[Optional]viewVehicleInventory(startTime, endTime): This will give a snapshot of the inventory for the given time slot i.e. all the vehicles that are available and all the vehicles that are not available categorised by vehicleType.

 

Guidelines:

 

1. You should store the data in-memory using a language-specific data-structure.
2. You can print the output in console.
3. Design your application in a way that a new rental Strategy can be implemented and used instead of the default one (lowest price).
4. Implement clear separation between your data layers and service layers.
5. You can take the startTime and endTime as DateTime or in any other way as you prefer.
6. The start time and end time will be in hourly granularity only.

 

Expectations:

 

1. Your code should cover all the mandatory functionalities explained above.
2. Your code should be executable and clean.
3. Your code should be properly refactored, and exceptions should be gracefully handled.

 

Interviewer was impressed with the code but eventually got rejected. Code link: https://github.com/rajatgupta-26/phonePay

lldmachine coding

by Expert (46,090 points)
selected by