What type of Call you would use if you don;t want the
control back to the calling program?
Answer Posted / balaji
Hi,
Please correct me if I am wrong..
I think u can give any call Static/Dynamic because these
CALL just tells how the calling program to be
invoked...during compile time or at the runtime...but if u
give Stop run in your called program it will automatically
give the control back to the OS and not to the calling
program unlike GOBACK which returns the control back to
calling pgm..
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
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
Explain how will you differentiate between an internal and an external sort, the pros and cons, internal sort syntax etc
what is difference between cobol and cobol/400
What is a SSRANGE and NOSSRANGE?
please..could u give an example about USAGE IS POINTER ..and explain why and when we use it ?
System Testing for Mainframe Developers What is System Testing? integration testing ? what's the procedure ..
Write a program to enter and display the names of students in a class using the occurs clause.
What rules are to be followed while using the corresponding options?
What is redefines clause in COBOL?
I have a program with an Array of 5000 occurences which is being passed from 5 sub levels to the front end screen. Thess 5 programs using each 5*2 = 10 different arrays with size as 5000. This is causing the transaction to utilize more storage consupmtion. I am looking to reduce the storage consumption. As part of that initially i thought Dynamic array may solve my problem. After viewing the comments given i see its same as normal array. IS there any other way we can resolve this issue?
what are decleratives in cobol?
What are the different data types in cobol?
Write the code to count the sum of n natural numbers.
How do u write test cases?
How to find out the closest prime number of an input number? I believe it has something to do with SEARCH and COBOL Linear Array.