How many maximum number of procedures can we write in one
COBOL program?
Answers were Sorted based on User's Feedback
Answer / karimulla
15 instream procedures are coded,255 catalog procedures are
coded
| Is This Answer Correct ? | 3 Yes | 1 No |
diffrence between renames and redifnes with examples
How we copy a program from production region to development region.What is the process & syntax ?
Give some examples of command terminators?
What is COMP SYNC?
Have you code any new programs in COBOL ? What is the functionality of the programs?
01 text-data pic x(100). move 'xyzdbfrjjg u' to text-data. how to find the value of last index of text-data?
I have the file which is having the extension no as records. sample file will look like below. 2310 3410 3256 4350 3781 5408 I need to replace the record which is starting with 3 to 5 (i.e) 3410 to 5410. How can we do it through cobol and cobol-db2 program? I need the possible logic?
what is index and how to use two tables using index?
What is static and dynamic call in cobol?
Program A calls program B. Will the working storage variables declared in program B be initialized every time it is called by program A or will the values be retained until the end of program A?
How To Separate The Numerics From An Alphanumric Data Item Which Contains Both Alphabates And Numerics ?
I hav vari declaration like..... 77 a pic s9(9).99. 77 b pic s9(9).99 comp. 77 c pic s9(9).99 comp-3. if i use MOVE 123456789.99 to a,b,c what happen every one working fine ?