RUN THIS PL/SQL CODE BLOCK TO INSERT SOME ROWS

3. Run this PL/SQL code block to insert some rows:

beginfor i in 1..1000 loopinsert into ex235 values (null);end loop;end;/