Suppose a small company has five employees and is planning to increase the number to six. Moreover,

Question:

Suppose a small company has five employees and is planning to increase the number to six. Moreover, suppose one of the company's programs contained the following assignment statements.
DailySalary = TotalSal/5;
AvgSalary = TotalSal/5;
DailySales = TotalSales/5;
AvgSales = TotalSales/5;
How would the task of updating the program be simplified if the program had originally been written using constants named NumberOfEmp and WorkWeek (both set to the value 5) so that the assignment statements could be expressed as
DailySalary = TotalSal/DaysWk;
AvgSalary = TotalSal/NumEmpl;
DailySales = TotalSales/DaysWk;
AvgSales = TotalSales/NumEmpl;
Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Related Book For  answer-question

Essentials of Marketing

ISBN: 978-0078028885

13th edition

Authors: William D. Perreault, Joseph P. Cannon

Question Posted: