Multiple choice technology programming languages

Which statement is used to remove the found set of records from a list?

  1. REMOVE RECORDS IN label FROM [LIST] listname

  2. REMOVE RECORDS FROM [LIST] listname

  3. DELETE RECORDS IN label FROM [LIST] listname

  4. DELETE RECORDS FROM [LIST] listname

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The correct syntax is REMOVE RECORDS IN label FROM [LIST] listname. This removes records identified by a found set label from a specified list. The IN clause specifies which found set to use, and FROM [LIST] identifies the target list. Option B is missing the required IN label clause.