how to access the file from prodution from changeman tool
and to submit a file to production
Answer / nag(igate)
using the checkout option to extract the file from
production.
| Is This Answer Correct ? | 3 Yes | 1 No |
how do you reference the ksds vsam file formats from cobol programs
What is an in line perform? When would you use it? Anything else you wish to say about it.
how the control comes back from subprogram to mainprogram
01 a pic 9(3) value is 123 01 b pic 9(6) move a to b wht will be the value ? and 01 a pic x(6) value is abc 01 b pic x(3) move a to b wht will be the value ?
Program A calls program B. Will the working storage variables declared in program B be initialized every time it is called by program A or will the values be retained until the end of program A?
What will happen if you code GO BACK instead of STOP RUN in a stand-alone COBOL program i.e. a program which is not calling any other program ?
what is the minimum number of lines a Cobol program should have to successfully compile and run
how to resolve the file status 47.......
what happens when a copybook variables are declared using include statement ?
01 a pic s9(5) occupies how many bytes ?
If we put three reads in COBOL in the same para one after the other, to read a PS file,will it read the same record thrice or it will read three records sequentially? For example : Input File 01 02 03 Para 900 Read infile Display Infile rec Read infile Display infile rec Read infile Display infile rec. What will be the output?
I have a sequential file of 100 records. How do I load the records into a two dimensional array ?