← Back to Test

Problem 14 - Entrance Test

A weather station recorded the daily maximum temperatures (in °C) for a city over a week. | Day | Maximum Temperature (°C) | |---|---| | Monday | 28 | | Tuesday | 30 | | Wednesday | 29 | | Thursday | 32 | | Friday | 31 | | Saturday | 27 | | Sunday | 29 | What was the range of daily maximum temperatures recorded during the week?

Correct: C

The range of a dataset is the difference between the highest and lowest values. - The highest maximum temperature recorded is 32°C (on Thursday). - The lowest maximum temperature recorded is 27°C (on Saturday). Range = Highest value - Lowest value = 32°C - 27°C = 5°C.