How arrays can be defined in COBOL?
No Answer is Posted For this Question
Be the First to Post Answer
what is the advantage of using redefines instead of delaring the variables ?
There is a production file which has millions of records in it.The program that uses it ends up with an SOC7 abend.It is sure that the abend is due to some invalid data in the file.Is there any way to debugg the SOC7 abend with out giving displays? I need the record which is cause for the abend.
If i initialize the 01 level variable in array, will it initialize all the array elements (occurs)?
Will the variable POS in the following code have a value of 2 or not? 01 POS PIC S9(4) COMP VALUE 2. 01 FIRST-NAME PIC X(10) VALUE 'ABC'. 01 LAST-NAME PIC X(10) VALUE 'XYZ'. 01 NAME PIC X(20) VALUE SPACES. STRING FIRST-NAME DELIMITED BY SPACES ' ' DELIMITED BY SIZE LAST-NAME DELIMITED BY SPACES INTO NAME WITH POINTER POS
Please let me know how the Eject verb works for page break.. I want to know the code, how it is used.
Read filea And file b write the same records in both files? Records in a but not in b record in b but not in a
i have 10 names in an array and my name is one of them also array is not in sorted order i need to display my name using index how will i do this
which one is better among static call and dynamic call?
HOW WE WILL SORT THE ARRAY WHICH IS GOING TO USE FOR SEARCH ALL?
How to read records from flat file in reverse order through COBOL program?
14 Answers Accenture, Broadridge, IBM, MAT, Polaris, SPIC, Syntel, TCS, Wipro,
I know my query will return more than one row but I don't want cursor what should I do?
How to find out the closest prime number of an input number? I believe it has something to do with SEARCH and COBOL Linear Array.