Multiple choice technology databases How can you find within a PL/SQL block, if a cursor is open? %OPEN %ISOPEN 1 & 2 None of the above Reveal answer Fill a bubble to check yourself B Correct answer Explanation %ISOPEN is the cursor attribute that returns TRUE if a cursor is open. %OPEN doesn't exist. The syntax is cursor_name%ISOPEN.