What are the steps you go through while creating a COBOL
program executable?

Answers were Sorted based on User's Feedback



What are the steps you go through while creating a COBOL program executable?..

Answer / asmara

1. COBOL + DB2 Programm
2. Source code will store in link-edit
Extracted SQL statements store in DBRM
where the time tokens are taken
3. Link - edit will compile and send it to load module
4. DBRM after setting the token the input will send to BIND
5. BIND will check the SQL Statements and check the syntax
and compile it and send to Package
6. Package will hold only one DBRM at a time so No. of
Packages store in PLAN.
7. Plan Will execute the statements
8. Finally it will combine and if the time stamp matches it
will exectue otherwise the time stamp mismatch error will
occur which -818.
if you want to resolve then u want to do the precompilation
again.

Is This Answer Correct ?    4 Yes 3 No

What are the steps you go through while creating a COBOL program executable?..

Answer / siddu

steps:
1.design the program

2.code the program

3.compile the program(IGYCRCTL)

4.link-edit the program(IEWL/HEWL)

5.execution

Is This Answer Correct ?    2 Yes 1 No

What are the steps you go through while creating a COBOL program executable?..

Answer / nagaraju

1.design the program

2.code the program

3.compile the program(IGYCRCTL)

4.link-edit the program(IEWL/HEWL)

5.execution

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More COBOL Interview Questions

what is the difference between Normal vaiable and comp variable.

5 Answers   DELL,


In a COBOL program, 2 tables TABLE1 and TABLE2 are defined that are indexed by INDEX1 and INDEX2 respectively. Can we use INDEX1 with TABLE2 and INDEX2 with TABLE1?

1 Answers  


What will happen if you code GO BACK instead of STOP RUN in a stand alone COBOL program ?

8 Answers   Arigo Infotech, IBM,


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

2 Answers   Temenos,


What is the difference between PIC 9.99 and 9v99?

7 Answers  






88 class is used for

5 Answers   CTS, EDS,


What are ISOLATION LEVELS? Where do we need to specify them in compiling JCL (Exactly which statement and what is syntax for it)?

2 Answers   T systems,


What is the difference between copy and include in cobol?

1 Answers  


How to delete a front spaces in a data-name/variable in cobol Example:- 01 data-name-1 PIC x(20) value " cobol language". 01 data-name-2 PIC x(20). MOVE data-name-1 to data-name-2. would like the value of data-name-2 is "cobol language".

3 Answers  


Q:what is the difference between the variable length and fixed lenght.how it varies in the cobol.

12 Answers   CTS, Wipro,


What does MAXCC 3 means? It is used in one my codes.

2 Answers   Wipro,


I have a Main Program which is calling Sub-Program which is a DB2 pgm. What will happen if I am not closing the cursor used in the Sub-program? Please advise..

3 Answers   iGate,


Categories