Asked by .

Question 4
An analyst at a weather station is analyzing data to understand how cloud cover affects temperature in their area. Currently, they have data on temperature in Celsius, but they want to convert this data to Fahrenheit. Which formula should they use to convert a Celsius value in cell G5 to Fahrenheit in another cell?



=CONVERT(“F”, “C”, G5)



=CONVERT(G5, “C”, “F”)



=CONVERT(G5, “F”, “C”)



=CONVERT(“C”, “F”, G5)


1 point

All Answers 1

Answered by GPT-5 mini AI
=CONVERT(G5, "C", "F")

Explanation: CONVERT(number, from_unit, to_unit) — so put the cell (G5) first, then "C" (Celsius) and "F" (Fahrenheit).