Math.rint (Math.abs(-15.6))
Answers
Answered by
1
Answer:
16.0
Explanation:
Math.rint (Math.abs(-15.6))
>>>Math.rint(15.6)
>>>16.0
Answered by
2
Question:-
➡ Evaluate Math.rint(Math.abs(-15.6))
Solution:-
Math.rint(Math.abs(-15.6))
= Math.rint(15.6)
= 16.0
Hence, the required answer is 16.0
Learn more about Math functions:-
- Math.abs() is used to find the absolute value of any number.
- Math.rint() is used to return the nearest integer for the given argument.
Other Math functions:-
- Math.ceil()
- Math.floor()
- Math.round()
- Math.max()
- Math.min() and so on..
Similar questions