How to convert bunch of words in a line to relvant ASCII
values?
Answers were Sorted based on User's Feedback
How we copy a program from production region to development region.What is the process & syntax ?
wht is load module and object module ?
a. Can the OPTIONAL clause in COBOL only be coded for input files? b. If it is coded for files opened in OUTPUT, I-O or EXTEND mode, will it give a compilation error? c. If there are no compilation errors and if such files are not coded in the JCL, will the OPEN statement run fine when these files are opened? d. How will a WRITE statement work for the above files?
what is the difference between PA & PF keys?
How to remove the spaces at end of each record in the output file Via COBOL program? note: The file has a VB length
how to refer the data field?
What is rmode(24)
Name some of the examples of COBOl 11?
How do u initialize an array?
What is "Call by content" and "call by reference"?
consider the following PROCEDURE DIVISION entry OPEN EXTEND IN-FILE identify the correct statement a.organization of IN-FILE is sequential and records can be added in the beginning b.organization of IN-FILE is sequential and records can be added in the end c.organization of IN-FILE is indexed and records can be added in the beginning d.organization of IN-FILE is indexed and records can be added in the end
How many times the loop runs here 01 a pic 9(2) value 1. perform para1 until a=10 move 1 to a. stop run. para1: move 10 to a.