Question: The following range-checking code works but is somewhat inefficient. Explain why and show how to revise it to be more efficient. if (saleAmount >= 1000)
The following range-checking code works but is somewhat inefficient. Explain why and show how to revise it to be more efficient.
if (saleAmount >= 1000) commissionRate = 0.08;
else if (saleAmount >= 500) commissionRate = 0.06;
else if (saleAmount <= 499) commissionRate = 0.05;
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
