how many divisions are there in cobol
Answers were Sorted based on User's Feedback
Answer / snehatechm
IDENTIFICATION DIVISION,ENVIRONMENT DIVISION,DATA
DIVISION,PROCEDURE DIVISION
| Is This Answer Correct ? | 15 Yes | 0 No |
Answer / bhaskar r
IDENTIFICATION DIVISION
ENVIRONMENT DIVISION
DATA DIVISION
PROCEDURE DIVISION
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / guest
four division are there .
1.identification division
2.environment division
3.data division
4.procedure division
| Is This Answer Correct ? | 4 Yes | 0 No |
what is the difference between start and startbr?
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
Suppose i want to declare a binary comp fild of 7 byte .how to write?
Can we use redefine clause in occurs clause?
which generation language is cobol
input:-AABBCCDDEFGHIIJ output:- ABCDEFGHIJ Here in input we hav the duplicate characters i.e repeating characters.SO we should eliminate the duplicate characters and should display the output in ascending order.
how can we code index in an array of cobol pgm?
how to access the file from prodution from changeman tool and to submit a file to production
what is internal sort and external sort ? which is preferable ?
example for sub strings ? and refernce modifications whit output pls
0 Answers College School Exams Tests, IBM,
01 a pic x(4) value 'abcd' 01 b pic 9(3) can we move from a to b.if possible what would be stored in b.
COMP?