Question: Prepare a PowerPoint presentation slide that includes the following: IPO Chart and a Flow Chart using the information below: materialCostList = [] laborCostList = []
Prepare a PowerPoint presentation slide that includes the following: IPO Chart and a Flow Chart using the information below:
materialCostList = [] laborCostList = [] overheadCostList = [] projectBenefitList = [] print('Project Analysis Program') print('For MIS525') print('May 2023 Session') print('By Craig Marcelin') continueAnalysis = 'Y' while continueAnalysis == 'Y': materialCostList.append(float(input('Enter Material Cost'))) laborCostList.append(float(input('Enter Labor Cost'))) overheadCostList.append(float(input('Enter Overhead Cost'))) projectBenefitList.append(float(input('Enter Projected Benefit'))) continueAnalysis = input('Would you like to enter another project? (Y/N): ') projectCounter = 0 for dataItem in materialCostList: totalProjectCost = materialCostList[projectCounter] + (laborCostList[projectCounter] + overheadCostList[projectCounter]) projectProfit = projectBenefitList[projectCounter] - totalProjectCost projectProfitPercent = projectProfit / totalProjectCost print('========================================') print('--- Summary Report for Project ' + str(projectCounter +1)) print('Prepared by: Craig Marcelin') print('Material Cost: ' + str(materialCostList[projectCounter])) print('Labor Cost: ' + str(laborCostList[projectCounter])) print('Overhead Cost: ' + str(overheadCostList[projectCounter])) print('Total Cost: ' + str(totalProjectCost)) print('Cost Savings or Revenue Increase: ' + str(projectBenefitList[projectCounter])) print('Project Profit: ' + str(projectProfit)) print('Project Return: ' + str(projectProfitPercent)) if projectProfitPercent < 0: print('Interpretation: Project not recommended for approval.') elif projectProfitPercent == 0: print('Interpretation: Neutral') elif projectProfitPercent <= 0.05: print('Interpretation: Recommended for approval.') else: print('Interpretation: Highly recommended for approval.') projectCounter += 1
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
