Which statement terminates the execution of a function?
ITERATE
LOOP
RETURN
BEGIN…END
None of these
Correct Option: C
The ‘RETURN’ statement is used only within stored functions, not stored procedures, triggers, or events. When this statement is executed it terminates execution of the function.