Computer Science, asked by rsnail4766, 9 months ago

Math.pow(25,0.5)+Math.ceil(4.2)

Answers

Answered by karanjotgaidu
101

Answer:

math.pow(25,0.5) = 25^½ = √25 = 5

math.ceil(4.2) = 5

So the sum is 5+5 = 10

10 is the answer....

Answered by AskewTronics
35

The output of "Math.pow(25,0.5)+Math.ceil(4.2)" is 10.

Explanation:

In the Java script language--

  • The Math.Pow() function returns the exponent value just for example, "Math.pow(25,0.5)" return the value of (25^{0.5}) which will be \sqrt{25} which gives 5 as the output.
  • The "Math.ceil()" returns the round of numbers in the upward direction. So "Math.ceil(4.2)" returns 5 because the round value of (4.2) in an upward direction is 5.
  • Then "Math.pow(25,0.5)+Math.ceil(4.2)" returns 10, when it write with the print statement like this--"alert(Math.pow(25,0.5)+Math.ceil(4.2))", because (5+5) gives 10 and alert() is a function used to print the statement in java script.

Learn More:

  • Javascript: https://brainly.in/question/9980021
  • Javascript random number prints :https://brainly.in/question/9617611
Similar questions