Vidyalelo
Java Programming · Q143

Interfaces and Abstract Classes

Programming · Java Programming · question 143

Q143

What will be the output of the following Java program? class Output public static void main(String args[]) double x = 2.0; double y = 3.0; double z = Math.pow( x, y ); System.out.print(z);

A.
2.0
B.
4.0
C.
8.0
Answer
D.
9.0

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board