Multiple choice technology web technology How do you round the number 7.25, to the nearest integer? round(7.25) Math.round(7.25) rnd(7.25) Math.rnd(7.25) Reveal answer Fill a bubble to check yourself B Correct answer Explanation JavaScript's Math object provides a round() method. Option B (Math.round(7.25)) is correct. Options A, C, and D either omit the Math prefix or use non-existent methods.