Multiple choice How do you round the number 7.25, to the nearest integer? Math.round(7.25) rnd(7.25) Math.rnd(7.25) 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.