Which three are true about anonymous blocks and subprograms? (Choose three.)
Which three are true about anonymous blocks and subprograms? (Choose three.)
PROCEDURE subprograms can accept parameters, which makes 'B' correct. Named subprograms are stored in the database server, making 'E' correct as well. Anonymous blocks can be written without the DECLARE keyword, but if they include variable declarations, the DECLARE keyword is necessary, which aligns with 'F' as being correct. While 'C' suggests a function subprogram must return one or more values, this is incorrect because a FUNCTION subprogram must return exactly one value.
B C AND E
A function cant return one or more value tho can it?
function CAN return multiple values through OUT or INOUT parameters (like procedure)
BCE IS TRUE