I am a bit rusty on my cursor lingo in PL/SQL. Anyone know this?
An explicit cursor is one you declare, like:
CURSOR my_cursor IS SELECT table_name FROM USER_TABLES
An implicit cursor is one created to support any in-line SQL you write (either static or dynamic).