What Will Be The Output Of The Following Plsql Codep Pre #477
What will be the output of the following PL/SQL code?</p> <pre><code class="language-sql">SQL> SET SERVEROUTPUT ON; SQL> DECLARE a varchar2(20) := 'NVAEducation' ; BEGIN dbms_output.put_line(a); END; / </code></pre>
This multiple choice question (MCQ) is related to the book/course
gs gs115 Structured Query Language.
It can also be found in
gs gs115 PL/SQL Basics - PL/SQL Syntax - Quiz No.1.
What will be the output of the following PL/SQL code?
SQL> SET SERVEROUTPUT ON; SQL> DECLARE a varchar2(20) := 'NVAEducation' ; BEGIN dbms_output.put_line(a); END; /
NVAEducation procedure successfully completed.PL/SQL procedure successfully completed.NVAEducation PL/SQL procedure successfully completed.NVAEducation