1.

What is the output of this program?
public class Output 
{
public static void main(String args[])
{
double num0 = 5.0;
double num1 = 2.0;
double num2 = Math.pow( num0, num1 );
System.out.print(num2);
}
}

A. 5
B. 2
C. 25
D. 25.0
E. 52
Answer» E. 52


Discussion

No Comment Found

Related MCQs