System.out.println(Math.sqrt(Math.ceil(15.8))); what is the output
Answers
Answered by
0
Answer:
4
Explanation:
Answered by
0
System.out.println(Math.sqrt(Math.ceil(15.8)));
Math.ceil(15.8) will return 16
And
Math.sqrt(Math.ceil(15.8))
Math.sqrt(16)
=4
4
Similar questions