How many variables can be declared in w-s section.?
Answers were Sorted based on User's Feedback
Answer / raja murugesan
am not sure about it. Any written proof in any cobol tutorial
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the difference between comp and comp-3 usage? Explain other COBOL usage?s.
With in these three which one is the default one Call Reference, Call By Value, Call By Content.-Which one is default?
if a dataset is already created with fixed length but after that i want to change fixed length to variable length then how is it possible
Whats the difference between search & search ALL?
In COBOL CALL-CALLING,if a program A is calling 3 sub- programs, dynamically, then it is said sub-programs will always will always in Initial Mode. My question is : Do we need to code CANCEL or (IS INITIAL) for dynamically called sub-programs or it is the property of Dynamically called pgms so every time sub-pgms are called they will be in initial mode. ***This question is only Dynamic call****, Please reply. Thank you in advance.
why we are using picture clause in the cobol programs?
A table has two indexes defined. Which one will be used by the SEARCH?
Can a REDEFINES clause be used along with an OCCURS clause? if yes, 01 WS-TABLE. 03 WS-TABLE-EL OCCURS 5 TIMES PIC X(1) VALUE 'A'. 03 WS-EX REDEFINES WS-TABLE-EL PIC X(5). What can you expect? if no,why?
When search all is used in cobol program without sorted input data?
6 Answers CGI, Principal Finance,
I've one string with spaces ( I N D I A ). My question is I want remove the spaces & combine in to single string without space (INDIA).How we can write the cobol program & wich options we need to use. Please let me know.
If my file contains 100,000 records and job abended at 55,000th records processing then how can i restart job from that record onward by ignoring that record. I can not edit the file as file size is big and it is getting browse substituted?
How do u find the programs calling the given module, without having doing 3.13 on loadlib/source library?