How to apply data reference errors testing to the following application?
A consulting company has developed an application that converts temperature from kelvin to fahrenheit and from fahrenheit to kelvin. formulas: f= (k-273)*9/5 + 32 k= 5/9 (f-32) + 273 min/max values: kelvin min value 0 max value +450 fahrenheit min value -460 max...