InterviewSolution
Saved Bookmarks
| 1. |
B. Find the output of i. System.out.println(Math.round(Math.min(Math.floor( 5.7). Math.ceil(5.2))));11. SOut |
|
Answer» loor(5.7) will GIVE 5.0Math.ceil(5.2) will give 6.0Then Math.min(5.0, 6.0) will give 5.0Then Math.round(5.0) will give 5 |
|