DCB for LOADLIB should be
-
LRECL= 80, RECFM=FB
-
LRECL=225, RECFM=VB
-
LRECL=80,RECFM=U
-
LRECL=80, RECFM=VB
C
Correct answer
Explanation
LOADLIB datasets in mainframe systems require specific DCB parameters. The correct configuration is LRECL=80 (logical record length of 80 bytes) and RECFM=U (undefined record format), which allows variable-length records within the load library. Option C correctly states these parameters. RECFM=VB would be incorrect as LOADLIBs use U format.