Multiple choice technology mainframe

I want my jcl to abend in 1 min. What parameter can be used in the job card to achieve this?

  1. TIME=(1,0)

  2. ABEND(1,0)

  3. TIME=60

  4. TIME=1

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

The TIME parameter in a JCL job card specifies the maximum CPU time allowed for the job. The format TIME=(minutes, seconds) is used. TIME=(1,0) means the job will abend if it exceeds 1 minute of CPU time. This is the correct syntax for time-based job termination.