Oracle Database: Program with PL/SQL — Question 22

Identify the two correct scenarios where a function can be optimized using the function result cache feature.

Answer options

Correct answer: D, E

Explanation

The correct answers D and E can effectively utilize the function result cache because they involve deterministic calculations where the results can be reused without accessing the database. Options A, B, and C involve data manipulation or retrieval from tables, which makes caching less applicable since their results can change based on the underlying data.