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 |
write a cobol logic. i have file that has 10 records .1 record go to first output file and second record goes to 2 output and etc
How many maximum number of procedures can we write in one COBOL program?
1.Can we define condition-name conditions in FD entry.
How to covert given string into ASCII value in COBOL/MF COBOL
how do you reference the variable unblock file formats from cobol programs
what are the error codes in cobol, db2, cics, vsam , and jcl
What is wrong with the following data declaration? 01 W-DATE PIC X(6). 05 DD PIC 99. 05 MM PIC 99. 05 YY PIC 99. (a) Nothing is wrong. (b) Under W-DATE all level 05 items are having a PIC 99 but level 01 has PIC X(6). (c) PIC can't be specified for a group item. (d) DD, MM, and YY are invalid datanames.
what is srange and nosrange pls reply to ths question ?
what are the steps to sort in a cobol program?
how many maximum no of variables can be declared in linkage section ?
how to check whether the open command of a sequential file is successful? or not?
Consider the following code: 77 A PIC 99V99 VALUE 55.35 77 B PIC 99V999 VALUE 32.754 ADD B TO A ON SIZE ERROR DISPLAY "ERROR!!!" What will be the result ? (a) A=88.10, B=32.754 (b) A=87.00 B=32.754 (c) A=87.10 B=32.754 (d) ERROR!!! will be DISPLAYed on the screen.