You have the following Java program:
class ExamPrep {
public static void main(String[] args){
double a = 5.0;
double b = 2.0;
// LINE 5
System.out.println(result);
}
} What can you put at LINE 5 to get the result of a raised to the power of b? Choose the correct answer:
A. double result = a ^ b;
B. double result = b ^ a;
C. double result = .Math.exp(a, b);
D. double result = .Math.exp(b, a);
E. double result = .Math.pow(a, b);
F. double result = .Math.pow(b, a);