Multiple choice technology mainframe

Using which option a input file can be split into equal no.of output files

  1. OUTREC FILES=(01,02,03,04,05,06,07,08,09,10),SPLIT

  2. OUTREC=(01,02,03,04,05,06,07,08,09,10),SPLIT

  3. OUTFIL FILES=(01,02,03,04,05,06,07,08,09,10),SPLIT

  4. ALL

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

OUTFIL FILES=(01,02,...,10),SPLIT is the correct syntax to split an input file into approximately equal output files. The SPLIT option with FILES parameter distributes records evenly across the specified output DDnames. OUTREC is for record reformatting, not splitting.