How do you compile cobol program..?
Answer / amarnadh reddy
hi,
Use compiler option IGYCRCTL utility.
ex: //step01 exec pgm=IGYCRCTL
| Is This Answer Correct ? | 15 Yes | 0 No |
What are the steps you go through while creating a COBOL program executable?
In a COBOL II PERFORM statement, when is the conditional tested, before or after the perform execution?
Explain how you can characterize tables in cobol?
The order of precedence of arithmetic operators in an expression can be overridden with the use of (a) [] (b) () (c) {} (d) Any of the above
Move Zeroes to I move 5 to j perform para1 varying I from 10 by -2 until I = 0 display j. para1. Add 5 to j. What’ll be the value after execution of display stmt. A) 35 B) 40 C) 30 D) 25 please explain how?
Can JUSTIFIED be used for all the data types?
How to read the last 100 records from a COBOL file. The file contains N number of records.
how you will define variables length in cobol.
We have 3 programms A,B,C.In the middle of the program A the controls goes to program B and in the middle of the program B control wants to go program C,after completion of program C again control comes to program B and again after completion of program B control comes to program A.How the process will takes and what are the controls we use for that process.If it is possible anybody of you explain with example?
I want to remove a duplicates form a given input field using cobol program. please Any one help me out to solve this ... Thanks in Advance.
What is the local-storage section?
I have two files , file1 is input file it contains 10,20,30,....,records but i want to display the records in file 2 as reverse order .how can we do by using jcl& cobol(dont use array) please any one can tell me the answer