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

Which two statements correctly differentiate functions and procedures? (Choose two.)

Answer options

Correct answer: B, C

Explanation

The correct answer is B and C because a function is designed to return a value, while a procedure can return none or multiple values. Additionally, functions can be used in SQL statements, whereas procedures are limited to PL/SQL statements, which makes option A and D incorrect.