Computer Science, asked by Onesarthak007, 19 days ago

System.out.println(Math.sqrt(Math.max(9.0,8.45));​

Answers

Answered by trivedidivyanshi27
0

Answer:

3.00

Explanation:

In this statement first three program will execute Math. max function which will give the result as 9.0

Then it will return square root of 9 i.e 3 as the final answer

But return data type will be double

so result is 3.00

Hope it helps

Similar questions