Answer Posted / ajayre
Totaly 5 types of perform statements are there
1.Simple perform
2.PERFORM TIMES
3.PERFORM UNTIL
4.PERFORM VARYING
5.Perform with test after/test before.
They are two types of performs are there.one is INLINE
PERFORM and another one is outline perform .
Inline perform start and end with perform and end-perform
Outline perform start and end with perform and exit.
Ajay
| Is This Answer Correct ? | 25 Yes | 5 No |
Post New Answer View All Answers
write a cobol logic. i have file that has 10 records .1 record go to first output file and second record goes to 2 output and etc
Why occurs cannot be used in 01 level in COBOL?
How to read the 2nd last record of a VSAM file? (The file size is huge and we don't know the key)
how do you reference the variable unblock file formats from cobol programs
What is the difference between PIC 9.99 and 9v99 in COBOL?
if we have " ibm mainframe ",in that how to remove first and last leading space eg:"ibm mainframe" like that the answer we need
When is inspect verb is used in cobol?
What is the Purpose of POINTER Phrase in STRING command in COBOL?
Is it possible that the redefines clause has different picture clauses compared to the one it redefined?
What is the compute verb? How is it used?
) How do u handle errors in BMS macro
how to move the records from file to array table. give with code example
What are the different types of condition in cobol and write their forms.
For rewrite, why is it mandatory that file needs to be opened?
if we display var1 then what will b displayed in below condition. 77 var1 pic s9(2) value -10. 77 var1 pic s9(2) value -11. " " " -12. " " " -13. -14 ... ... -19.