At the minimum, which division of COBOL is enough to be
coded?
Answers were Sorted based on User's Feedback
Answer / rajesh naidu
Identification Division.
Because whatever the program, at minimum it identifies
program name.
| Is This Answer Correct ? | 4 Yes | 0 No |
I have a files containing both duplicate and non-duplicate records.The file is already sorted by a key.I want to determine those records that are duplicate and records that are non-duplicate.If duplicate the record is move to a duplicate file and if non-duplicate that will be move to valid file.thank you
What does EXIT do ?
Define in-line perform?
Can we MOVE X(9) to 9(9) OR 9(9) to X(9)? If yes what are the ways for doing this?
12 Answers T systems, Tech Mahindra,
s9(18) comp-3:: What is the size of memory it takes internally?
consider the following piece of code 01 GROUP-ITEM 05 AMOUNT-1 PIC 99V9 USAGE COMP VALUE 50 05 AMOUNT-2 PIC 9(4)V99 USAGE COMP MOVE ZERO TO GROUP-ITEM ADD 50 TO AMOUNT-1 what will be the content of AMOUNT-1? a.50 b.100 c.0 d.unpredictable
What is the difference between PIC 9.99 and PIC9v99?
subscript and index r not coded in u r application program what will happen?
is it possible to rename 01 level?
How do you code Cobol to access a parameter that has been defined in JCL?
In my table having 3000 Records. How can I delete the 500th row? (we don't know what is data inside the table)
What is Control Break processing ?