Can we put move statement in COBOL copybook
Answer Posted / suersh ramaiyan
Copy book means... A piece of code may be used in many programs.
We can write that piece of code in a member of a PDS (copy book) and we can use anywhere in the COBOL programs.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is a SSRANGE and NOSSRANGE?
explain sorting techniques in cobol program?
Discuss about changing dataset name in proc.
How do you define a variable of comp-1 and comp-2?
What is the LINKAGE SECTION used in COBOL?
How to use the same COBOL program in Batch and CICS on lines? explain with an example
What are the different rules of SORT operation?
For rewrite, why is it mandatory that file needs to be opened?
if we display var1 then what will b displayed in below condition. 77 var1 pic s9(2) value -10. 77 var1 pic s9(2) value -11. " " " -12. " " " -13. -14 ... ... -19.
How do you reference the fixed block file formats from cobol programs
What is the difference between comp and comp-3 usage?
How do define dynamic array in cobol. how do you define single dimensional array and multidimensional array in your cobol?
What is a scope terminator give example?
What is the problem of ordered sequential files access?
2 input fles: 2 flat files, with different number of records. both are having unique key for each record and already sorted in ascending order . match these files using unique key and in output only matching key value has to be written. please procide cobol logic