Computer Science, asked by abhi171043, 5 months ago

write program in pl/sql to print series 2 4 6 8 10 using BASIC loop.​

Answers

Answered by Devanshpandey1678
0

Answer:

Pl provide the details of the computer

Answered by llabhi786ll
1

Answer:

LOOP. i := i+2. dbms_output.put_line(i);. exit WHEN x > 10. END LOOP;. END;. output: 2. 4. 6. 8. 10. PL/SQL procedure successfully completed.

Similar questions