What is the difference between external and global variables in COBOL?
No Answer is Posted For this Question
Be the First to Post Answer
What is an in line perform? When would you use it? Anything else you wish to say about it.
What is the difference between write & move in COBOL?
what are decleratives in cobol?
What is the difference between structured cobol programming and object alternativelyiented cobol?
we can use set true for condition names.. similarly can we code set to false in cobol pgm? will it work?
EXPLAIN MAIN FRAME TESTING PROCESS...HOW TO FIX THE MAINFRAME BUGS?
I have two questions here. 1. How to read a flat file in reverse order? 2. How to read a VSAM KSDS file in reverse order? In both the cases we donot know the total number of records.
What are the cobol coding sheets?
What is the maximum size of a 01 level item in COBOL I? in COBOL II?
i Want All cobol ERROR codes?
What are ISOLATION LEVELS? Where do we need to specify them in compiling JCL (Exactly which statement and what is syntax for it)?
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???