Answer Posted / brijesh jat
COBOL-85
| Is This Answer Correct ? | 2 Yes | 5 No |
Post New Answer View All Answers
How can we find that module can be called – whether DYNAMICALLY or STATICALLY?
What is the LINKAGE SECTION used in COBOL?
Write a program that uses move corresponding.
how do you reference the esds vsam file formats from cobol programs
What is inspect in cobol ?
What is the difference between PIC 9.99 and PIC9v99?
What is the local-storage section?
What are the various section in data division and briefly explain them.
What are the different open modes available in cobol?
How are the next sentence and continue different from each other?
Name the divisions, which are available in a cobol program?
How to get the last record in vsam file in cluster? And how can you get the kids file records into your cobol program?
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.
Define static linking and dynamic linking.
I have File 1 occurs 5 times with Employee-ID,Employee-Name,Employee-Dept (EEE and MECH). I have File 2 occurs 10 times with Employee-ID,Employee-Name,Employee-Dept (EEE,CIVIL,CHEMICAL and MECH). In FIle 1 and FIle 2 , for matching Employee-DEPT (Only MECH) , we need to move entire records from file1 to file 2. We should not use 2D array. Your help is needed here.