Please use pseudo code
lowtech Headers 12 2001 Yamaha KODIA: Search and Browse 2. An automobile manufacturer has a factory in each of 5 cities. Each factory produces the same 8 models of cars and trucks. The manufacturer also has annual production goals for each model (the same goal would apply for that model at each factory, e.g if 100 units is the goal for Model #1, then this means each factory should aim to produce that many units of Model #1), and for each factory for all of its models combined. Design the logic, in pseudocode, for a program that: a. Allows a user to enter i. The production numbers for each model at each factory i. The production goals for each model Calculates the total production goal for each factory for all models combined (Decide which of the above belong in a 2-dimensional array, and which in a 1- dimensional array) Outputs a complete list of the production numbers along with the details of factory number and model number, and production goal e.g. Factory #1, Model #1: Goal units: 85 Production units: 79 If the number of units for a model falls 10% or more below the production goal. outputs a string of three asterisks after the production number, e.g Factory #3, Model #5: Goal units: 100 Production units: 72 b. c. Outputs the total production at each factory in a similar manner, and if the number of units falls 10% below the total production goal for that factory. outputs a string of three pound signs (###) after the production total d. e. Allows the user to look up the production number for any model at any factory by entering a factory number and a model number, e.g., following the second example above, if I enter 3 when prompted for the factory number, and 5 when prompted for the model number, the program should output that the production units for that is 72