Multiple choice technology programming languages

A: IN RSREFR FDWOL RECTYPE = REPORT END FIND PLACE RECORDS IN A ON LIST ABC RELEASE RECORDS ON LIST ABC CT: COUNT RECORDS ON LIST ABC PRINT COUNT IN CT What will be the value of count in label CT

  1. Will be the number of records on LIST ABC

  2. Will be equal to the number of records in label A

  3. Zero

  4. Both (a) & (b) are correct

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

The statement RELEASE RECORDS ON LIST ABC empties the list. Therefore, when COUNT RECORDS ON LIST ABC is executed subsequently, the count of records on the list is zero.