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 |
01 a pic 9(6) value is 123456 01 b pic 9(3) move a to b wht will be the value ?
Suppose a program has the following code. What will be the output? MAIN-PARA. DISPLAY 'MAIN-PARA' PERFORM SECTION-A. STOP RUN. SECTION-A. PARA-A1. DISPLAY 'SECTION A PARA A1'. PARA-A2. DISPLAY 'SECTION A PARA A2'.
how we can reverse the string in the cobol for example satheesh can be reveresed as hseehtas
what is Pic 9v99 Indicates?
How to read a 100 record from a file through cobol?
Difference between next and continue clause
how we sort two input files based on a common column and giving one o/p file please send me the coding logic?
The maximum number of dimensions that an array can have in COBOL-85 is ?
What is difference between com and com3? Eg. s9(4) so what is the memory it will occupy com and com3.
What are the different ways to run a COBOL DB2 program using JCL?
What is difference between static and dynamic call in cobol?
01 a pic 9(9v99) 01 b pic 9(9.99) wht will be the stored vales in both cases