The most appropriate piece to develop a function for in this code would be the calculation of the temperature in Fahrenheit.
c * 9/5 + 32
In the following piece of code that calculates the temperature in Fahrenheit, which piece would be most appropriate to develop a function for?%0D%0A%0D%0Ac = 100 %0D%0A%0D%0Aprint(c * 9/5 + 32) %0D%0A%0D%0Ac = 0 %0D%0A%0D%0Aprint(c * 9/5 + 32) %0D%0A%0D%0Ac = 30 %0D%0A%0D%0Aprint(c * 9/5 + 32) %0D%0A(1 point)%0D%0AResponses%0D%0A%0D%0Ac = 100%0D%0Ac = 100%0D%0A%0D%0Ac = 0%0D%0Ac = 0%0D%0A%0D%0Ac * 9/5 + 32 %0D%0Ac * 9/5 + 32%0D%0A%0D%0Aprint
1 answer