Oracle Database: Advanced PL/SQL — Question 4

Which three are true about the NOCOPY hint, the PARALLEL ENABLE hint, and the DETERMINISTIC clause? (Choose three.)

Answer options

Correct answer: B, E, G

Explanation

The NOCOPY hint (B) indeed tells the compiler to pass parameters by reference, reducing memory overhead. A deterministic function (E) is defined by its consistent output for the same inputs. Lastly, the PARALLEL_ENABLE clause (G) allows a function to be executed in parallel, enhancing performance. Options A, C, and D are incorrect as they misrepresent the functionalities of the hints and clauses.