What are different data types in cobol?
No Answer is Posted For this Question
Be the First to Post Answer
which one is the best of com and com-3.using of real time ?
if we display var1 then what will b displayed in below condition. 77 var1 pic s9(2) value -10. 77 var1 pic s9(2) value -11. " " " -12. " " " -13. -14 ... ... -19.
How many sections are there in data division in COBOL?
consider the following progrm statements MOVE 0 TO SW.NO.OF.REC PERFORM PRI-OUT UNTIL SW=1 DISPALY NO.OF.REC STOP RUN PRE-OUT READ IN-FILE AT END MOVE 1 TO SW WRITE OUO-REC FROM IN-REC ADD 1 TO NO.OF REC if the IN-FILE contains 1000 records what value will be displayedafter the PERFORM is over?assume that N0.OF.REC has PIC 9(4) a.1000 b.1001 c.1 d.none of the above since there is a syntex error
If by mistake we MOVE a working storage variable into LINKAGE area. What will happen??
s9(18) comp-3:: What is the size of memory it takes internally?
when SE37 SB37 and sd37 occurs how to increase the volume , primary quantity and secondary quantity?
)what is retrieve?
Consider the below example call a-test1. -- -- -- a-test1. if a=b perform a-test through a-exit next sentence else if b=c perform c-test through c-exit. if a=d perform d-test through d-exit. a-test. -- -- a-exit. exit. can u tell me what will happen if a=b after looping into a-exit will the control go back to a- test1. will the condition a=d be checked???
Explain complete concept of table handling in COBOL with an example?
01 a pic 9(9v99) 01 b pic 9(9.99) wht will be the stored vales in both cases
How to use the same cobol program in Batch and CICS onlines ? Please expalin with an example. Thanks in advance.