Multiple choice technology databases

SELECT NVL(null,'testing') FROM DUAL ;

  1. testing

  2. null

  3. False

  4. error

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

The NVL function in Oracle SQL evaluates the first argument. If it is null, it returns the second argument. Since the first argument is null, the query returns the string 'testing'.