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 |
What are the different types of condition in cobol and write their forms.
COBOL program to read the string ' BOMBAY' in reverse order as 'YABMOB'
How can we increase the size of an existing PDS to include more no. of modules.
In file1 have 80 records are like d1,d2,d3......D80. File2 have 1000records are like a1d1,a1d2,a3d3.....Etc. I want matching records in file3 ? Plse tell me the matching logic???I want answer only in cobol ?Not using any tool or jcl?
How do you differentiate between cobol and cobol-ii?
How do you define a sort file in JCL that runs the COBOL program?
What is an index for tables?
can we write paragraph in area B .....
We are using the searching a table which is indexed, once the key is found, how can we get the occurance at which the key was found.
what is the difference between Plan & package
how to transfer the file from pc to mainframe??
If A>B next sentence end-if display 1 display 2. display 3. If a>b, it will display only 3.(the next sentence, ie., after fullstop/period) ____________________________________ if a>b continue end-if display 1 display 2. display 3. If a>b, it Will display 1 2 3 (the next statement) ____________________________________ if a>b continue display 1 end-if display 2 display 3. display 4. If a>b, Will it display 2 3 4 (or) 1 2 3 4 ?