Why did you choose to work with ibm mainframe cobol programming?
No Answer is Posted For this Question
Be the First to Post Answer
where did you see the information regarding abend codes in jcl?
how you will define variables length in cobol.
Consider the following code: 77 A PIC 99V99 VALUE 55.35 77 B PIC 99V999 VALUE 32.754 ADD B TO A ON SIZE ERROR DISPLAY "ERROR!!!" What will be the result ? (a) A=88.10, B=32.754 (b) A=87.00 B=32.754 (c) A=87.10 B=32.754 (d) ERROR!!! will be DISPLAYed on the screen.
What will happen if we move SPACES to numeric field and ZEROES to alphabetic field?
what is the difference between implicit and explicit scope terminator with example?
Difference between lrecl, blksize among PS, PDS issues? i.e in jcl at dcb
i want to enter the name 'pandu' into ur table how?
How to retrive the 9th records out of ten records using the cobol program ?
How to delete a front spaces in a data-name/variable in cobol Example:- 01 data-name-1 PIC x(20) value " cobol language". 01 data-name-2 PIC x(20). MOVE data-name-1 to data-name-2. would like the value of data-name-2 is "cobol language".
In an EVALUATE statement, can I give a complex condition on a when clause?
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.
How you can read the file from bottom?