Computer Science, asked by syderaking, 6 months ago

Math.rint (Math.abs(-15.6))​

Answers

Answered by BrainlyProgrammer
1

Answer:

16.0

Explanation:

Math.rint (Math.abs(-15.6))​

>>>Math.rint(15.6)

>>>16.0

Answered by anindyaadhikari13
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:-

  1. Math.abs() is used to find the absolute value of any number.
  2. Math.rint() is used to return the nearest integer for the given argument.

Other Math functions:-

  1. Math.ceil()
  2. Math.floor()
  3. Math.round()
  4. Math.max()
  5. Math.min() and so on..
Similar questions