In PL/SQL Basic Loop all statements inside the block are executed at least once before loop termination, Basic loop encloses statement between LOOP and END LOOP and there must be an EXIT or EXIT-WHEN condition to terminate the loop
The syntax of Basic Exit loop is like this
LOOP
statements to execute
EXIT; or EXIT-WHEN
END LOOP;
See these examples for better understanding