Multiple choice technology mainframe

Find the i/p file records as below: Student A - Max = 100 Min = 60 Student B - Max = 60 Min = 50 Student C - Max = 80 Min = 75 How to format the file to the following o/p data? Student A - Maximum = 100 Minimum = 60 Student B - Maximum = 60 Minimum = 50 Student C - Maximum = 80 Minimum = 75

  1. OPTION COPY INREC FINDREP=(INOUT=(C'Max',C'Maximum',C'Min',C'Minimum')

  2. OPTION COPY INREC FINDREP=(C'Max',C'Maximum',C'Min',C'Minimum')

  3. Both a and b

  4. None of the above

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

In JCL, the FINDREP parameter requires INOUT= to specify the input/output fields for find-replace operations. Option A correctly uses the syntax FINDREP=(INOUT=(C'Max',C'Maximum',C'Min',C'Minimum')) which replaces 'Max' with 'Maximum' and 'Min' with 'Minimum'. Option B is missing the required INOUT= keyword, making it syntactically incorrect.