Which command is used to write information to an output buffer?
-
SET OUTPUT ON
-
SET BUFFEROUTPUT ON
-
SET SERVEROUTPUT ON
-
SET SCREEN ON
C
Correct answer
Explanation
In Oracle PL/SQL and SQL*Plus, the SET SERVEROUTPUT ON command enables the output buffer, allowing procedures to write information via DBMS_OUTPUT.PUT_LINE that can be displayed on the screen. The other options are incorrect or non-existent commands.