What is the output of the following code?
declare
v_length_nr NUMBER :=5.5;
v_width_nr NUMBER :=3.5;
v_area_nr NUMBER;
begin
v_area_nr:=v_length_nr*v_width_nr;
DBMS_OUTPUT.put_line('Area:'||area_nr);
end
/
end
*
ERROR at line 8:
ORA-06550: line 8, column 3:
PLS-00103: Encountered the symbol "end-of-file" when
expecting one of the following:
;
The symbol ";" was substituted for "end-of-file" to continue. A common error is a missing semicolon after the END statement.
This error message isn't completely self-explanatory.