MCQs > Database Management > Oracle PL/SQL 9i > Examine the Block given below: declare v_no number:=2; v_msg varchar2(20):='Goodbye'; begin case When v_no=1 then dbms_output.put_line('One!'); dbms_output.put_line('Another One!'); When v_no>1 then dbms_output.put_line('>1!'); dbms_output.put_line('Still>1!'); when v_msg='Goodbye' then dbms_output.put_line('Goodbye'); dbms_output.put_line('Adios'); else dbms_output.put_line('No Match'); end case; end; / What is the output of this block?

Oracle PL/SQL 9i MCQs

Examine the Block given below: declare v_no number:=2; v_msg varchar2(20):="Goodbye"; begin case When v_no=1 then dbms_output.put_line("One!"); dbms_output.put_line("Another One!"); When v_no>1 then dbms_output.put_line(">1!"); dbms_output.put_line("Still>1!"); when v_msg="Goodbye" then dbms_output.put_line("Goodbye"); dbms_output.put_line("Adios"); else dbms_output.put_line("No Match"); end case; end; / What is the output of this block?

Answer

Correct Answer:

Explanation:

Note: This Question is unanswered, help us to find answer for this one

Oracle PL/SQL 9i Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it

search

Oracle PL/SQL 9i Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it