Give output of the following statement:-
1)Math.Pow(5,(Math get (4.0))
Step-by-step explanation...
Computer Question
no spamming.....⚔⚔
Answers
Answer:
public static double pow(double a, double b)
Parameter:
a : this parameter is the base
b : this parameter is the exponent.
Return :
This method returns ab.
Example 1: To show working of java.lang.Math.pow() method.
// Java program to demonstrate working
// of java.lang.Math.pow() method
import java.lang.Math;
class Gfg {
// driver code
public static void main(String args[])
{
double a = 30;
double b = 2;
System.out.println(Math.pow(a, b));
a = 3;
b = 4;
System.out.println(Math.pow(a, b));
a = 2;
b = 6;
System.out.println(Math.pow(a, b));
}
}
Output:
900.0
81.0
64.0
Example 2: To show working of java.lang.Math.pow() method when argument is NaN.
// Java program to demonstrate working
// of java.lang.Math.pow() method
import java.lang.Math; // importing java.lang package
public class GFG {
public static void main(String[] args)
{
double nan = Double.NaN;
double result;
// Here second argument is NaN,
// output will be NaN
result = Math.pow(2, nan);
System.out.println(result);
// Here second argument is zero
result = Math.pow(1254, 0);
System.out.println(result);
// Here second argument is one
result = Math.pow(5, 1);
System.out.println(result);