Computer Science, asked by Pogo2122, 2 days ago

What will be the output of Math ceil(Math max(-2.4, -3.0))​

Answers

Answered by ItzMeSam35
3

Question :

Math.ceil(Math.max(-2.4,-3.0))

Output : -2.0

Mathematically :

Largest Between -2.4 and -3.0 is -2.4

Therefore Ceiling Value of -2.4 will be -2.0

Similar questions