DECLARE
x number := 10;
BEGIN
LOOP
dbms_output.put_line(x);
x := x + 10;
IF x > 50THEN
exit;
END IF;
END LOOP;
— after exit, control resumeshere
dbms_output.put_line(‘After Exit x is: ‘ ||x);
END;
/
NOTE: Can you provide the output screenshot of thefollowing code
Answer
Output: AI 50 After Exit x is: 60