Multiple choice technology programming languages

A: IN RSREFR FPC RECTYPE = REPORT END FIND FR A PAI END FOR “FR” stands for

  1. “FOR ALL RECORDS IN A”

  2. “FOR EACH RECORD IN A”

  3. ”FOR ONE RECORD IN A”

  4. ”FOR ANY RECORD IN A”

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

FR is the abbreviation for 'FOR EACH RECORD IN A' which creates a loop that iterates through every record in the found set A. The syntax combines with END FOR to mark the loop boundary. 'FOR ALL RECORDS' and 'FOR ANY RECORD' are not valid M204 expansions.