In a COBOL II PERFORM statement, when is the conditional
tested, before or after the perform execution?
Answer Posted / aji cherian
Before
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What are the pertinent COBOL
Write a cobol program making use of the redefine clause.
How you can read the file from bottom?
What are the pertinent COBOL commands?
What is perform what is varying?
How do you differentiate between cobol and cobol-ii?
What the difference is between continue and next sentence?
what are decleratives in cobol?
What is the Purpose of Pointer in the string?
Why would you use find and get rather than to obtain?
How do you code cobol to access a parameter that has been defined in jcl? And do you code the parm parameter on the exec line in jcl?
How to print 10 to 1 if the input have only 10 digit number?
How do you get the data to code the BMS macro?
Difference between cobol and cobol-ii?
here is my requirement A1 is alphanumeric with value 'A1B2C3D4' as defined below 05 A1 PIC X(8) VALUE IS 'A1B2C3D4' but i need to have A2,A3 as ABCD & 1234 repectively...... A2 = ABCD A3 = 1234 Can you please explain me what are the different ways to do it?