Multiple choice Which of the following must be used to get 32, if the value of x is 32.9? Ceil(x) Round(x) Floor(x) Abs(x) Reveal answer Fill a bubble to check yourself C Correct answer Explanation The floor function returns the largest integer less than or equal to a given number. For 32.9, floor(32.9) is 32. Ceil would return 33, and round would return 33.