When is a scope terminator mandatory?
Answers were Sorted based on User's Feedback
Answer / guest
scope terminators are mandatory for in-line performs and
evaluate.
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / guest
scope terminators are mandatory for in-line performs and
evaluate.
| Is This Answer Correct ? | 4 Yes | 0 No |
How to read a 100 record from a file through cobol?
in a indexed file what is procedure for read the records from 12 to 18. please give the code example
what is ASRA, AEY9?
diffrence between renames and redifnes with examples
2)Where the Plan is located in CICS-DB2?
why we are using set in searchall?
With in these three which one is the default one Call Reference, Call By Value, Call By Content.-Which one is default?
Define cobol?
How to remove the spaces at end of each record in the output file Via COBOL program? note: The file has a VB length
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?
Re: 01 NAME1 PIC X(13) VALUE "COBOL PROGRAMMING". 01 NAME2 PIC X(13). now I want to display the value of NAME1 in reverse order i.e value should be displayed as "GNIMMARGORP LOBOC" HOW can I do that ??? please let me know if any one knows it.
if a=b how the flow will complete??? perform test through test-exit. perform activa through activa-exit. test. if a=b then next sentence else move a to c. test-exit. exit. activa. -- -- activa-exit. exit.