ICSE Class 10 Computer Applications Question 3 of 30

Solved 2024 Question Paper ICSE Class 10 Computer Applications — Question 8

Back to all questions
8
Question

Question 1(viii)

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
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