Multiple choice technology programming languages

SELECT SQRT(25) FROM DUAL;

  1. 5

  2. 25

  3. 50

  4. 0

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

The SQRT function in SQL calculates the square root of a numeric value. The square root of 25 is 5. Since DUAL is a dummy table in Oracle database, selecting SQRT(25) from it yields a single row containing the value 5.