Q. Which of the following provides a way for your program to select multiple rows of data from the database and then process each row individually.
β
Correct Answer: (A)
PL/SQL Cursors
Explanation: Oracle creates a memory area which is known as the context area where the SQL statement is processed and which contains all the information which is needed for the processing. The cursor is the pointer to this context area.