What will the following functions return when executed.
a. Math.rint(Math.max(-14.2,-19.6));
b. Math.ceil(-7.8);
Answers
Answered by
4
What will the following functions return when executed.
a. Math.rint(Math.max(-14.2,-19.6));
Answer: -14.0
b. Math.ceil(-7.8);
Answer: -7.0
Similar questions