what is the minimum number of lines a Cobol program should
have to successfully compile and run
Answer Posted / anoop
only two. identification division & program-id
| Is This Answer Correct ? | 26 Yes | 1 No |
Post New Answer View All Answers
What are various search techniques in cobol? Explain.
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.
What is the compute verb? How is it used?
What do you understand by psb and acb?
How to get the last record in vsam file in cluster? And how can you get the ksds file records into your cobol program?
what is the difference between COBOL2 AND COBOL390?
can you please let me know if there is any walkins for COBOL/PLI/DB2/IMS/JCL in pune other than IBM and ITC infotech
How to use the same COBOL program in Batch and CICS on lines? explain with an example
Write a program that uses move corresponding.
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?
Explain about different table spaces.
what is the use of outrecord?
Our issue is there seems to be a disconnect, or no link, between our SELECT statement and our SD. We had SELECT SORT-FILE and SELECT SORT-FILE ASSIGN TO SORTWRK. ASSIGN TO SORTWRK1 SORTWRK2 SORTWRK3 SORTWRK4. with SD SORT_FILE RECORD CONTAINS 7833 CHARACTERS. In either case, at run time, the system ignored our SORTWRK# DD statements and allocated 16 sort works with the SORTWK## naming convention. Any ideas why the system does not recognize the connection? We do not even need the SORTWRK DD statements. Thanks
i need a small 3d program using inline and outline.
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.