Give the output for the following java mathematical functions: [8x1=8]
1. System.out.println(Math.sqrt(25));
2. System.out.println(Math.min(102,-110));
3. System.out.println(Math.max(17,75));
4. System.out.println(Math.pow(3,3));
5. System.out.println(Math.abs(-15.7));
6. System.out.println(Math.round(55.4));
7. System.out.println(Math.floor(87.87));
8. System.out.println(Math.ceil(45.2));
Answers
Answered by
1
Answer:
1. 5
2. 102
3. 75
4.3^3
5.idk
6. idk
7. 88
8. 46
Explanation:
Similar questions