how many maximum no of variables can be declared in linkage
section ?
Answers were Sorted based on User's Feedback
Answer / ashraf
Hi Ramya,
There is no limit of size in linkage
section..
| Is This Answer Correct ? | 0 Yes | 0 No |
how can u find out just by seeing wheater it is main program or sub program ? any two ways to identify reply soon ?
should I use Go back in the main program ? Yes we can use Go back in main program as well.
If i initialize the 01 level variable in array, will it initialize all the array elements (occurs)?
01 text-data pic x(100). move 'xyzdbfrjjg u' to text-data. how to find the value of last index of text-data?
consider the following FD FILE-1 01 REC-1 PIC X(80) ...... WORKING-STORAGE SECTION 01 W-REC PIC X(90) ........ PROCEDURE DIVISION FIRST-PARA ....... READ FILE-1 INTO W-REC AT END MOVE 1 TO EOF-FLAG which of the following is true with respect to the above? a.REC-1 will contain nothing and W-REC will contain the contains of the record read b.REC-1 and W-REC contain the same data c.syntex is invalid and error will occur d.REC-1 and W-REC must be of same size
Can we move SPACES to numeric field and ZEROES to alphabetic field? If yes what are the way doing this?
study the following 01 A PIC 99V0 VALUE 5 01 B PIC 9V9 VALUE 6 01 C PIC 99V9 VALUE 2.5 01 D PIC 99 VALUE 3 COMPUTE A ROUNDED B C = A+B*C/D ON SIZE ERROR PERFORM PRINT-ERROR the comments of A.B.C after execution of the above statement are a.A=10 B=0 C=10 b.A=10 B=9.9 C=9.9 c.A=10 B=0 C=9.9 d.A=10 B=6 C=10
How to traceback if I am getting SOC7 or SOC4 abend? List down the steps
How to remove the spaces at end of each record in the output file Via COBOL program? note: The file has a VB length
what is S04E error in jcl?
11 Answers IBM, L&T,
what is internal sort and external sort ? which is preferable ?
RENAME clause takes new SPACE in memory.TRUE or FALSE? a)TRUE 2)FALSE