Can we call a procedure from Anonymous PL/SQL block?
A
Correct answer
Explanation
You can call a stored procedure from an anonymous PL/SQL block. Anonymous blocks can invoke procedures using the EXECUTE statement or direct procedure calls. This is a standard way to test or execute procedures without creating a named stored block. The procedure executes within the block's scope.