What are INPUT PROCEDURE and OUTPUT PROCEDURE?
No Answer is Posted For this Question
Be the First to Post Answer
01 x pic s9(8) comp. How will the following value be internally allocated '18787'
why do u need inspect verb?
Please let me know how the Eject verb works for page break.. I want to know the code, how it is used.
How to use the same COBOL program in Batch and CICS on lines? explain with an example
01 text-data pic x(100). move 'xyzdbfrjjg u' to text-data. how to find the value of last index of text-data?
what is sort? whis is internal & external sort ?when do u go for inter sort & external sort? tell about some sort utilites?
How do you come out of an EVALUATE statement?
What is rmode(any) ?
I have a COBOL main program which is calling sub program, the number of calling parameters used in main program are 4 whereas in sub program it's 5. Sub program is passing 5 parameters back to main program Will there be any compilation error? Or main program parameters displays junk values?
CAN ANY ONE HELP WHAT IS QTP? why it is nessery AND WEN IT IS USED?
what happens if we dont close cursor in db2-cobol pgm?
How to replace the GOTO statement in COBOL without changing the structure of program. e.g. consider following code... I.D. E.D. D.D. P.D. compute C = A + B. GOTO para 100-display. compute D = C - D. GOTO 200-display. some other logic...... ........ GOTO 300-para. ...... ...... GOTO 400-para. Now I want to replacce all GOTO statements without changing the structure and otput of program.