Oracle Database 11g: Program with PL/SQL — Question 63

Which statements correctly describe the features of functions and procedures? (Choose all that apply.)

Answer options

Correct answer: A, D

Explanation

Option A is correct because a procedure can indeed include a return statement that does not return a value. Option D is also correct as functions can have zero or more parameters. Options B and C are incorrect; a function cannot return multiple values using a single return clause, and while a procedure can be executed in various contexts, it cannot be used in SQL expressions.