Which Java statement is equivalent to the following expression?
x = a^2 / √9 - 6
C) (a * a)/Math.sqrt(9) - 6;
B) a/Math.pow(2,Math.sqrt(9)) - 6;
A) x = Math.pow(a,2)/Math.sqrt(9) - 6;
Both A and C are correct.