GithubHelp home page GithubHelp logo

interview's Introduction

Car Dealer Inventory System Let us consider that we will develop Car Dealer Inventory System (referred as System). The System would have the ability to manage vehicles in the inventory. As well as generate report on the current inventory state. Here are some of the entities involved in the System.

Vehicle has following properties.

  • id

  • type - This property have the following set of values

    • Truck
    • Sedan
    • Van
  • color

  • make - This property have the following set of values

    • DODGE, FORD, HONDA, HYUNDAI, CHEVROLET
  • year

  • towingCapacity - only truck requires this property

  • passengerCapacity - only van requires this property

  • msrp - The System gets the manufacturer’s suggested retail price from a third part library. MSRPProvider. This implements the following interface

public interface  MSRPProvider {
	public double getMSRPForLargeVehicle(String make, int year); // For Trucks or Van
	public double getMSRPForSmallVehicle(String make, int year); // For Sedan or hatch back
}

Inventory should have a data structure to hold the all the vehicles available to the dealer. It should provide the functionality to perform the basic CRUD operations.

Report should allow to retrieving Vehicle information from the Inventory by Type, Year, and Make.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.