What are the divisions in a cobol program? Which one is the mandatory division among them?
Answer / shib
Identification Division.
Environment Division.
Data Division.
Procedure Division.
mandatory : Identification Division only
| Is This Answer Correct ? | 0 Yes | 0 No |
Which is the best IBM mainframe Training Institute in Ameerpet, Hyderabad
How To move a value to an array using move verb?
How do u find the programs calling the given module, without having doing 3.13 on loadlib/source library?
How do you fetch current date in normal cobol pgm and in cobol-db2 pgm?
What type of SDLC u followed? Why?
what is sync clause?
when SE37 SB37 and sd37 occurs how to increase the volume , primary quantity and secondary quantity?
What are the different data types available in COBOL?
i have the following varibles in the working storage 05 ws-A PIC X(30) VALUE 'ABCDEFGHIJKLMNOPQRESTUVWXYZ ' 05 WS-B REDEFINES WS-A 10 WS-B1 PIC X(10). 10 WS-B2 PIC 9(10). 10 WS-B3 PIC X(10). If I Display B1, B2 and B3 respectively, what is the value displayed in B2
01 x pic s9(8) comp. How will the following value be internally allocated '18787'
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.
Consider the following COBOL entries 05 X PIC 99 VALUE 10. ADD 40 X TO X. COMPUTE X = 3 * X - 40. The result in X is