Computer Science, asked by tanishkasingh098, 7 months ago

What will Math.round(Math.pow(2,3)) return *​

Answers

Answered by yogavamsi1999
4

answer:

8.

Explanation:

Math. round means rounding how many significant digits we want.

ex: 2.7756.( rounded four significant digits).

Math.pow means powering the numbers.

ex: 2^3 = 2*2*2= 8.

Answered by Oreki
2

Output:

8

Explanation:

Math.round(Math.pow(2,3))

> Math.round(8.0)

> 8

Similar questions