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 |
How can we find out wether to declare the data items like Integer, Char,Comp? If comp types how can we decide wether it is Comp and Comp3.How it is? Please Explain... Cheers.
Is this allowed? 01 WS-TABLE. 03 FILLER-X PIC X(5) VALUE 'AAAAA'. 03 WS-EX REDEFINES FILLER-X OCCURS 5 TIMES PIC X(1). can redefines clause be used with occurs clause?
i want a program using by if, evaluate , string, unstring, perform, occurs?
how to code in cobol while using variable block file?
In a COBOL program, 2 tables TABLE1 and TABLE2 are defined that are indexed by INDEX1 and INDEX2 respectively. Can we use INDEX1 with TABLE2 and INDEX2 with TABLE1?
How can we know that cobol program is using report file or simple file....?
What is XDC ?
How to remove the spaces at end of each record in the output file Via COBOL program? note: The file has a VB length
What is the difference between NEXT SENTENCE and CONTINUE?
What is the difference between comp and comp-3 usage? Explain other COBOL usage?s.
how we rectify soc7 and soc4 errors in project?
How to get the last record in vsam file in cluster? And how can you get the kids file records into your cobol program?