What is tne need to use sub programs in Cobol?
Answers were Sorted based on User's Feedback
Answer / chowdary
reusabulity of code and coding time will be reduced
| Is This Answer Correct ? | 15 Yes | 0 No |
Answer / vinay sonar
subprogram is used so that many programs can be merged into
single programs.also it reduces the required storage space
and no need to decleare variables again
| Is This Answer Correct ? | 2 Yes | 2 No |
What do you feel makes a good program?
wht happens if we dnt give scope terminator ?
i need a small 3d program using inline and outline.
What are the access modes of START statement?
) What is the use of IGNORE?
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
How many times the loop runs here 01 a pic 9(2) value 10. perform para1 a times stop run. para1: move 20 to a.
Have you code any new programs in COBOL ? What is the functionality of the programs?
What is Redefines clause?
Can we move X(9) to 9(9). If yes what are the ways for doing this?
I HAVE FOLLOWING DECLARATION. 02. A PIC X(10) VALUE 'XXXXXXXXXX'. 02. B REDEFINES A. 05. C PIC X(3). 05. D PIC X(3). 05. E PIC 9(3). IN MY PROG, I HAVE MOVE 1 TO E. DISPLAY A. WHAT WILL BE DISPLAYED AS A RESULT OF THIS? PLEASE EXPLAIN THE ANSWER. THANKS.
How do define Dymanic array in cobol how do u define single demensional arry and multidymensional arry in ur cobol.