where did you see the information regarding abend codes in jcl?
In COBOL programming, what is PERFORM? What is VARYING?
if i am reading a file with some 50000 records and moving to a DB2 table and suddenly the program abends in between, is there anyway i could restart from the exact record at which the job failed once the program restarts.
how do you reference the variable block file formats from cobol programs
What happens in the background of spool when we submit a job for compilation and execution... This is a recent question in ibm...Kindly help me.....
What is the LINKAGE SECTION used in COBOL?
Is It Possible to Update or change in VIEW Mode?
How many types of sorts are there in cobol?
What is the difference between external and global variables in COBOL?
What is the difference between comp and comp-3 usage? Explain other COBOL usage?s.
Explain fixed length record in cobol? with suitable example
what is the advantage of sync class
Will the variable POS in the following code have a value of 2 or not? 01 POS PIC S9(4) COMP VALUE 2. 01 FIRST-NAME PIC X(10) VALUE 'ABC'. 01 LAST-NAME PIC X(10) VALUE 'XYZ'. 01 NAME PIC X(20) VALUE SPACES. STRING FIRST-NAME DELIMITED BY SPACES ' ' DELIMITED BY SIZE LAST-NAME DELIMITED BY SPACES INTO NAME WITH POINTER POS