Computer Science, asked by animishbevara, 6 months ago

The result of Math.sqrt ( Math.abs ( Math.min (-9, -8)) is?​

Answers

Answered by saidulnayan781
2

Answer:

3

Explanation:

Its a javascript code....

Math.sqrt ( Math.abs ( Math.min (-9, -8)));

1. First, Math.min(-9,-8) will find the minimum value from -9 and -8 which is -9

2. Then, Math.abs(-9) will output the absolute value of -9 that is 9

3. Finally, Math.sqrt(9) will show the squareroot of 9 which is 3

Similar questions