How do define dynamic array in cobol. how do you define single dimensional array and multidimensional array in your cobol?
can we use variable picture clause as xx.99 in cobol.
Name the divisions, which are available in a cobol program?
what is internal sort and external sort ? which is preferable ?
How to use the same COBOL program in Batch and CICS on lines? explain with an example
What should be the sorting order for SEARCH ALL?
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,
In COBOL "BEFORE" advancing is there or not ?
How to recover a deleted source physical file from library?
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
77 I pic 99 value 5 Perorm para-A I times. Para -A. move 10 to I. How many times the para-A will be executed.?
What is file status 92?
What are the functions like c or c++ in cobol?