KnowledgeBoat Logo

Output Questions for Class 10 ICSE Computer Applications

Give the output of the following:

  1. Math.floor (-4.7)
  2. Math.ceil(3.4) + Math.pow(2, 3)

Java

Java Math Lib Methods

ICSE

24 Likes

Answer

  1. -5.0
  2. 12.0

Math.floor method returns the largest double value that is less than or equal to the argument and is equal to a mathematical integer. As -5.0 is the largest mathematical integer less than -4.7 so it is the output. Note that -4.7 is a negative number so the largest integer less than -4.7 is -5.0 and not -4.0.

Math.ceil(3.4) gives 4.0 and Math.pow(2,3) gives 8.0. So the output is 4.0 + 8.0 = 12.0.

Answered By

11 Likes