Q:

A company manufactures a part for which there is a desired weight. There is a tolerance of N percent, meaning that the range between minus and plus N% of the desired weight is acceptable

0

 A company manufactures a part for which there is a desired weight. There is a tolerance of N percent, meaning that the range between minus and plus N% of the desired weight is acceptable. Create a variable that stores a weight, and another variable for N (for example, set it to two). Create variables that store the minimum and maximum values in the acceptable range of weights for this part

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

>> weight = 12.3; >> N = 2; >> min = weight - weight*0.01*N min = 12.0540 >> max = weight + weight*0.01*N max = 12.5460

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now