subject

The leading high-end sports car dealer in Beverly Hills is looking to improve customer satisfaction. To that end, they asked you to write software to track their sales metrics, which include wait times and agent performance, so they can decide on the agent mix. Here are their requirements. When a customer arrives, she is assigned an agent with the highest expertise for the car she is planning to buy. If multiple agents match and are available, the one with the highest rating must be picked. And if no agent is available, the customer will wait and gets assigned to the next agent that becomes available.
Generally, each agent takes a different amount of time with the customer, but he takes the same time with every customer whether or not he closes the deal. For every deal closed, an agent is rewarded $10,000 in commission. If he closes 10 or more deals in a calendar week (i. e., Sunday through Saturday), he is further awarded a bonus of $100,000.
Your job is to create the logic to generate metrics for the customer wait times in minutes:
* Mean
* Median
* Standard deviation
In addition, you need to show the performance of the agents *in the ascending order of their IDs*:
* Deals closed
* Revenue generated for the dealer
* Commission
* Bonus
The dealer wants you to create unit tests to make sure that your software meets their requirements. In addition, they are providing you with test data for agents and customers for an integration test of the software - conduct the test with 5 agents and 100 customers.
Need to implement agent. cpp, dealer. cpp and write the unit-test for both.

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 12:40
In a response of approximately 50 words, explain why it would be essential for the successful a/v technician to participate in additional coursework, presentations and seminars offered by equipment manufacturers as well as annual conferences attended by colleagues in the industry.
Answers: 1
question
Computers and Technology, 22.06.2019 21:00
Write a method so that the main() code below can be replaced by the simpler code that calls method original main(): public class calcmiles { public static void main(string [] args) { double milesperhour; double minutestraveled; double hourstraveled; double milestraveled; milesprhour = scnr.nextdouble(); minutestraveled = scnr.nextdouble(); hourstraveled = minutestraveled / 60.0; milestraveled = hourstraveled * milesperhour; system.out.println("miles: " + milestraveled); } }
Answers: 2
question
Computers and Technology, 22.06.2019 22:40
Least square fit to polynomial write a function leastsquarefit3pol that solves a linear system of equations to find a least squares fit of a third order polynomial to an experimental data set given as two row arrays. the function leastsquarefit3pol must explicitly solve a set of linear equations and cannot use polyfit. there should be no restriction on the size of the problem that can be solved.
Answers: 1
question
Computers and Technology, 22.06.2019 23:30
Define a function printfeetinchshort, with int parameters numfeet and numinches, that prints using ' and " shorthand. ex: printfeetinchshort(5, 8) prints: 5' 8"
Answers: 1
You know the right answer?
The leading high-end sports car dealer in Beverly Hills is looking to improve customer satisfaction....
Questions
question
Mathematics, 22.10.2020 08:01
Questions on the website: 13722363