How do define dynamic array in cobol. how do you define single dimensional array and multidimensional array in your cobol?
No Answer is Posted For this Question
Be the First to Post Answer
Under which scenario you would go for a static call as opposed to dynamic call?
I got user abend U4038 while compiling my runjcl.. can anyone help me?
Study the DATA DIVISION entries and the three PROCEDURE DIVISION entries given below: 01 END-OF-FILE-SWITCH PIC XXX. 88 NO-MORE-RECS VALUE "YES". 88 MORE-RECS VALUE "NO". (i) READ SAMPLE-FILE AT END MOVE "YES" TO NO-MORE-RECS. (ii) IF NO-MORE-RECS = "YES" GO TO LAST-PARA. (iii) IF NO-MORE-RECS GO TO LAST-PARA. Which are wrong? (a) (i) and (ii) (b) (ii) and (iii) (c) (i) and (iii) (d) all
Name the sections present in data division.
Write a program that uses move corresponding.
What are subroutines ? and how do we pass data to the sub routines?
88 class is used for
What is the difference between Global and External Variables?
what is the maximum error code in mainframe
what will be the output when a)pic 9(6)value 000178 is moved to pic ***,***. b)pic 9(5) value 57397 is moved to pic $$,$$9.
I had 100 records and i want to execute last three records by using cobol programming?what will be coding?
I need to compare two VSAM files, both having 'number' as key. If there is a matching record, write the data into another VSAM file. How will it be possible.