Which line in the above code has an error?
declare
no number;
sq number;
begin
no:=&number; --Line 1
if no>10000 then -- Line 2
dbms_output.put_line('Too large value'); -- Line 3
else -- Line 4
sq=no*no; -- Line 5
dbms_output.put_line(\\\\\\'Square of \\\\\\' || no || \\\\\\' is \\\\\\' || sq); -- Line 6
end if; -- Line 7
end;
/
Reveal answer
Fill a bubble to check yourself