Multiple choice

Which of the following must be used to get 32, if the value of x is 32.9?

  1. Ceil(x)

  2. Round(x)

  3. Floor(x)

  4. 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.