Multiple choice technology databases SELECT NVL(null,'testing') FROM DUAL ; testing null False 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'.