DECLARE CURSOR is executable.
B
Correct answer
Explanation
DECLARE CURSOR is a declarative SQL statement that defines a cursor, not an executable statement. It declares the cursor's name and associated SELECT statement but doesn't actually execute the query. The cursor is activated when you OPEN it, not when declared.