How to Pass table from a cobol program to another cobol
program and how to use that table in called program
Answer Posted / sj
we can pass table via linkage section means static table
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are declaratives and what are their uses in cobol?
How can you get the ksds file records into your cobol program?
What is the difference between structured cobol programming and object alternativelyiented cobol?
i have 10 names in an array and my name is one of them also array is not in sorted order i need to display my name using index how will i do this
What is a SSRANGE and NOSSRANGE?
How do you code cobol to access a parameter that has been defined in jcl? And do you code the parm parameter on the exec line in jcl?
What is the difference between next sentence and continue in cobol programing language?
Write a program that uses move corresponding.
How do we get current date from system with century in COBOL?
What is the local-storage section?
Define static linking and dynamic linking.
i made it to stage 3 of an interview process wednessday they will quiz my knowledge again face to face for an analyst role recruiter said it will be based on Business requirements system is cobol and good ideas what they might ask etc
Explain how will you differentiate between an internal and an external sort, the pros and cons, internal sort syntax etc
What is the LINKAGE SECTION used in COBOL?
I have program P1 which calls file F1 which has 100 records and following structure 001 .................. 002 .................. 003 .................. 098 .................... 099 ................... 100 .................... Now I want to read these files and write these records in file F2 in following manner. 001 ...... 051 ..... 002 ...... 052 ..... 003 ...... 053 ..... .......... ....... .......... ....... .......... ....... 048 ........ 098 ...... 049 .......... 099 ....... 050 .... 100 ......