Multiple choice technology programming languages What does the cursor attribute ‘%rowcount’ do? Check whether cursor has fetched any row Check whether cursor has not fetched any row. Check the number of rows returned by the cursor Both A and C Reveal answer Fill a bubble to check yourself C Correct answer Explanation %ROWCOUNT is a cursor attribute that returns the number of rows fetched by the cursor so far. It is a numeric value that increments with each successful fetch operation.