What will be the value of :--
i) Math.pow(Math.sqrt(36),3)
ii) Math.ceil(Math.sqrt(79))
Answers
Answered by
5
Math.pow(Math.sqrt(36),3)
= 216
Math.ceil(Math.sqrt(79))
= 9
Description-
The Math.pow() function returns the base to the exponent power.
The Math.ceil() function always rounds a number up to the next largest integer.
Similar questions