What kind of error is trapped by on size error option?
No Answer is Posted For this Question
Be the First to Post Answer
Differentiate between structured cobol programming and object-oriented cobol programming.
How do you fetch current date in normal cobol pgm and in cobol-db2 pgm?
What the difference is between continue and next sentence?
what is meaning by design document? who can repared for this?
How to remove the spaces at end of each record in the output file Via COBOL program? note: The file has a VB length
What is amode(24), amode(31), rmode(24) and rmode(any) (applicable to only mvsesa enterprise server) ?
what is the difference between external and global variables?
can anybody post me about file-aid and changemen tools pls and give me reference if any mainframe guys are there
WHAT IS SOC3?HOW IT CAN BE RESOLVED?
input 1 input2 ouput1 output2 output 3 1 re 300 1 re 200 1 re 300 3 rc 500 1 re 200 2 rr 400 1 re 300 2 rr 400 1 rc 400 3 rc 500 1 rc 400 2 rr 700 2 rr 700 5 tt 900 5 tt 900 2 inputs r in flat file and output 1 is matched records,ouptput2 is unmatched of input1,output3 is unmatched of input2! how vl u get the output files using sequential order and to check with each and every records! let me know the procedure division ?
Please let me know at which Scenarios we will go for STATIC call or DYNAMIC
If A>B next sentence end-if display 1 display 2. display 3. If a>b, it will display only 3.(the next sentence, ie., after fullstop/period) ____________________________________ if a>b continue end-if display 1 display 2. display 3. If a>b, it Will display 1 2 3 (the next statement) ____________________________________ if a>b continue display 1 end-if display 2 display 3. display 4. If a>b, Will it display 2 3 4 (or) 1 2 3 4 ?