Computer Science, asked by jsprashantchouhan, 6 months ago

Find the value of Math.sqrt(Math.pow(3.6 , 4))​

Answers

Answered by Oreki
0

Output:

12.96

Explanation:

Math.pow(3.6, 4) gives, 167.9616,

And square root of 167.9616 gives 12.96.

Answered by Adarsh21052002
0

Answer:

___math.pow(3.6,4) will give

 {3.6}^{4}

___thus now math.sqrt(Math.pow(3.6, 4)) becomes

math.sqrt( {3.6}^{4} )

this now results:

 \sqrt{ {3 .6}^{4} }  =  {3.6}^{2}

Similar questions