write the output of the following. System.out.println(Math.squrt(Math.max(5 math floor(9.9))))
Answers
Answered by
2
Answer:
3.0
Explanation:
=>System.out.println(Math.sqrt(Math.max(5, math floor(9.9))));
=>System.out.println(Math.sqrt(Math.max(5,9)));
=>System.out.println(Math.sqrt(9));
=>System.out.println(3.0);
OUTPUT:-
3.0
Similar questions