Multiple choice technology programming languages

SELECT POWER(3,2) FROM DUAL;

  1. 8

  2. 9

  3. 6

  4. -6

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

POWER(3,2) raises 3 to the power of 2, which equals 3 multiplied by itself. 3^2 = 3 × 3 = 9. The POWER function performs exponential calculations.