Given the variables temperature and humidity, write an expression that evaluates to true if the temperature is greater than 90 and the humidity is less than 10. a) temperature > 90 AND humidity < 10 b) temperature < 90 OR humidity > 10 c) temperature > 90 OR humidity < 10 d) temperature < 90 AND humidity > 10