Multiple choice technology programming languages

A: IN RSREFR FDWOL RECTYPE = REPORT END FIND PLACE RECORDS IN A 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
D Correct answer
Explanation

The code places records from the find operation onto LIST ABC and labels them with A. COUNT RECORDS ON LIST ABC counts these records. Since LIST ABC contains exactly the records labeled A, both statements are equivalent - the count equals both the number on LIST ABC and the number in label A.