KnowledgeBoat Logo

Computer Applications

Given double b = Math.ceil(3.4) + Math.pow(2,3);
What will be the final value stored in the variable b?

  1. 12.0
  2. 11.0
  3. 11.4
  4. 11.5

Java Math Lib Methods

13 Likes

Answer

12.0

Reason — Math.ceil() returns the smallest whole number greater than or equal to its argument. Math.pow(a,b) returns the value ab. So, the final value of b will be:

    b = Math.ceil(3.4) + Math.pow(2,3);
⇒ b = 4.0 + 8.0
⇒ b = 12.0

Answered By

6 Likes


Related Questions