Multiple choice

Which of the following is the correct PL/SQL function to print on screen?

  1. dbms_output.put_line ('Text');

  2. dbms-output.put-line ('Text');

  3. dbms_output ('Text');

  4. printf (Text);

  5. puts(Text);

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

This is the correct syntax of the function used to print on screen.