Computer Applications

What is the output of Math.ceil(5.4)+Math.ceil(4.5)?

  1. 10.0
  2. 11.0
  3. 12.0
  4. 9.0

Java Math Lib Methods

ICSE 2024

2 Likes

Answer

11.0

Reason — The method Math.ceil(double value) in Java rounds up a decimal number to the next highest integer, regardless of the fractional part.

Breakdown of the Expression:

  1. Math.ceil(5.4):
    5.4 is rounded up to 6.0.

  2. Math.ceil(4.5):
    4.5 is rounded up to 5.0.

Adding the Results:
6.0 + 5.0 = 11.0

Answered By

2 Likes


Related Questions