Multiple choice technology mainframe

Possible ways to rectify S322, a. Change the CLASS b. TIME=1440 c. Remove abnormal logic in the code(like infinite looping). d. Change PRTY

  1. a & b only

  2. b & c only

  3. a, b, c only

  4. d only

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

S322 error indicates CPU time limit exceeded. Solutions include: changing CLASS (a) to one with higher time limit, specifying TIME=1440 (b) to maximize time, and fixing code issues like infinite loops (c) that consume excessive CPU. Changing PRTY (d) affects job priority, not CPU time limits, so it's not a valid solution.