Select The Correct Output For The Following Plsql Codep Pre #532
Select the correct output for the following PL/SQL code.</p> <pre><code class="language-sql">DECLARE var1 varchar2(20) := 'hello nvaeducation'; BEGIN dbms_output.put_line(INITCAP(var1)); 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 Loops, Strings and Arrays - PL/SQL Strings - Quiz No.1.
Select the correct output for the following PL/SQL code.
DECLARE var1 varchar2(20) := 'hello nvaeducation'; BEGIN dbms_output.put_line(INITCAP(var1)); END; /
HELLO NVAEDUCATION PL/SQL procedure successfully completed.Hello nvaeducation PL/SQL procedure successfully completed.Hello NVAEducation PL/SQL procedure successfully completed.HELLO nvaeducation PL/SQL procedure successfully completed.