state the output for
(a)
double e= math.pow(math.sqrt(25),3);
system.out.println(e);
(b)
system.out.print(math.ciel( -4.3));
Answers
Answered by
0
A. The Math.pow() function returns the base to the exponent power, that is, baseexponent.
B. The java.lang.Math class that comes bundled with Java contains various methods for performing basic numeric operations such as the elementary exponential, logarithm, square root, and trigonometric functions.
Answered by
2
Answer:
(a) 125.0
(b) -4.0
Hope you got your answer and I think you only wants direct answers so I didn't explained. If you want explanation comment me down.
And btw, there are mistakes in the program. Just said for info
sadoranda:
I want explanation
Similar questions