Multiple choice technology databases Begin Dbms_output.put_line(‘Hello world’) End; What is the error in the above block? There is no error in the statement Exception handler is missing DBMS_OUTPUT.PUT_LINE package must be declared semicolon is missing in the line "Dbms_output.put_line(‘Hello world’)" Reveal answer Fill a bubble to check yourself D Correct answer Explanation In PL/SQL each statement must end with a semicolon. The line Dbms_output.put_line('Hello world') lacks this terminating semicolon, causing a compilation error. The stored answer correctly identifies this omission.