Computer Science, asked by the7epic7gamer7, 1 day ago

What will be the value of :--

i) Math.pow(Math.sqrt(36),3)

ii) Math.ceil(Math.sqrt(79))​

Answers

Answered by DEBOBROTABHATTACHARY
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