1 point
What will be the output of the
given code
System.out.println(Math.sqrt(Math.max(Math pow(2,3).9)))
Answers
Answered by
0
Answer:
The result would be 3.0
Explanation:
I think you meant
System.out.println(Math.sqrt(Math.max(Math.pow(2,3),9)));
instead of
System.out.println(Math.sqrt(Math.max(Math pow(2,3).9)))
Similar questions