Problem specification5 Solution specification5 Structured English algorithm5 Screen design 7/8 Delphi / Pascal code with internal documentation 9/10/11/12/13 Print out of Delphi Forms 14/15/16 Self evaluation of the project17 This program is dedicated to calculating the performance and fuel consumption of the trips made by Fred the travelling salesman in a year. Yearly totals will also be calculated to give an idea of overall performance. This is what' is needed today in a world where many things done by hand or the long way, they are now automated giving people and break by getting machines to do the work.Solution SpecificationInput: Enter relevant data. (Begin km's, end km's, litres used and fuel cost.)Output: the outputs will be as follows. Total distance travelled, fuel consumption (In km's per litre.) and the total fuel cost.Interface: Windows GUI in forms using Delphi 2.User Help: "Help" page in the main screen of program.Structured English AlgorithmStart of Total Distance travelled formInput Begin dist and End distProcess Using End Dist minus Begin DistOutput The total distance travelled in kilometresStart of Fuel Consumption formInput Begin dist, End dist, Litres of fuel usedProcess The total distance being the End Dist minus the Begin Dist divided by the total number of litres of fuel usedOutput Fuel consumption in km's per litreStart of Total Fuel Cost formInputLitres used and avg cost of fuelProcessThe total amount of fuel used in the trip multiplied by the avg cost of fuel for the tripOutputThe total cost of fuelPseudo CodeDistance travelled formWrite (enter your Beginkm)Read (Beginkm)Write (please enter your Endkm)Read (Endkm)While Endkm * Beginkm doWrite (ERROR. Wrong information)Read (Endkm)Dist = Endkm - BeginkmWrite (The distance travelled in this trip is , Dist)Fuel consumption formWrite (Enter the Begin km)Read (Begin km)Write (Please enter the End km)Read (End km)Write (Enter litres of Fuel used)Read (...