Multiple choice

How do you round the number 7.25, to the nearest integer?

  1. Math.round(7.25)

  2. rnd(7.25)

  3. Math.rnd(7.25)

  4. round(7.25)

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Math.round(x) rounds a number to the nearest integer, with .5 cases rounding up.