what is difference bt COND, REGION & TIME parameters at JOB & EXEC. give an exp.



what is difference bt COND, REGION & TIME parameters at JOB & EXEC. give an exp...

Answer / aparajita

COND parameter allows to specify condition based on the
return code of earlier steps will allow the current job
steps to execute or to bypass.

we can code cond at step as well as at job statement.if any
of the steps with in job issue a return code that satisfy
the cond code at job stmt. then the system bypass the
remaining steps and terminate the job.
===
Region-specify the limit of the real or virtual storage
allocated for any of the job steps.
if you specify region parameter at job stmt then it
override the specified region parameter at each job steps
with in the job.
===
Time-it specify the total cpu time all the job steps in a
job use.
if you specify time at job level then it implies to entire
job.if you specify at step level it implies only to the
particular step.

Is This Answer Correct ?    7 Yes 0 No

Post New Answer

More COBOL Interview Questions

which is faster either static call or dynamic call ? and specify the reasons for it ? reply fast

1 Answers  


What are the different data types available in COBOL?

4 Answers  


88 class is used for

5 Answers   CTS, EDS,


If my file contains 100,000 records and job abended at 55,000th records processing then how can i restart job from that record onward by ignoring that record. I can not edit the file as file size is big and it is getting browse substituted?

5 Answers   TCS,


I have a table with 3 dimensions like this : 01 ws-table 04 ws-page occurs 3 08 ws-column occurs 2. 12 ws-record occurs 20 pic x(40). How to code with PERFORM varying with 3 dimension...I forgot..

2 Answers   EDS,






here is my requirement A1 is alphanumeric with value 'A1B2C3D4' as defined below 05 A1 PIC X(8) VALUE IS 'A1B2C3D4' but i need to have A2,A3 as ABCD & 1234 repectively...... A2 = ABCD A3 = 1234 Can you please explain me what are the different ways to do it?

2 Answers   IBM,


How to remove the spaces at end of each record in the output file Via COBOL program? note: The file has a VB length

3 Answers   TCS,


what is linkcard in cobol?

1 Answers   TCS,


how do you reference the variable block file formats from cobol programs

0 Answers  


wht is the difference between goto and perform stmts

7 Answers   DELL,


Using string statement.Is coding three destination string from one source string possible in one code?or three codes for every destination string of one source string.?thank you

1 Answers   BPL,


If we use GO BACK instead of STOP RUN in cobol?

2 Answers   Temenos,


Categories