What are INPUT PROCEDURE and OUTPUT PROCEDURE?
when SE37 SB37 and sd37 occurs how to increase the volume , primary quantity and secondary quantity?
Study the DATA DIVISION entries and the three PROCEDURE DIVISION entries given below: 01 END-OF-FILE-SWITCH PIC XXX. 88 NO-MORE-RECS VALUE "YES". 88 MORE-RECS VALUE "NO". (i) READ SAMPLE-FILE AT END MOVE "YES" TO NO-MORE-RECS. (ii) IF NO-MORE-RECS = "YES" GO TO LAST-PARA. (iii) IF NO-MORE-RECS GO TO LAST-PARA. Which are wrong? (a) (i) and (ii) (b) (ii) and (iii) (c) (i) and (iii) (d) all
what is lrec=f,what is difference between f,fb,v,vb?what is default value?how do we came to know that records are in f,fb,v,vb?
how can you identify wheather the program is using search or search all in the cobol program?
How to read the 2nd last record of a VSAM file? (The file size is huge and we don't know the key)
How to remove the spaces at the end of each record in the output file of variable length, via cobol program?
What is the difference between a binary search and a sequential search what are the pertinent cobol?
01 NAME1 PIC X(13) VALUE "COBOL PROGRAMMING". 01 NAME2 PIC X(13). now I want to display the value of NAME1 in reverse order i.e value should be displayed as "GNIMMARGORP LOBOC" HOW can I do that ??? please let me know if any one knows it.
What are the cobol coding sheets?
what is difference between the sysabend and userabend?
is it possible to pass an SQL query inside a jcl which is inside a cobol program?
In a program, there are 2 sections defined say SECTION-A and SECTION-B. There is a paragraph say CALC-INT in both the sections. If this para has to be called directly for SECTION-A, then PERFORM CALC-INT will not work as it is present in both sections. How the PERFORM statement has to be coded here?