Multiple choice technology programming languages

O RSREFR.FILE FILEMAN BEGIN A: IN RSREFR FDWOL RECTYPE = REPORT END FIND END Suppose if you have 10 records with rectype = report,when you run the above adhoc what will be printed

  1. 10

  2. 0

  3. Nothing will be printed

  4. Error

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

The code defines a found set A with 10 records but contains no PRINT statement - only END. Without an explicit print command, M204 will not output anything even though records are found. Options A and B are incorrect because nothing is printed.