In COBOL "BEFORE" advancing is there or not ?
Answers were Sorted based on User's Feedback
Answer / nag(igate)
Yes, Before advancing clause is there. but it is default in
perform statement.
ex:
Perform para1 varying I from 1 by 1 until I > 10 { test
before or after}
1. if we code before: the condition will check first then
loop will execute. it is default.
2. if we code after: the loop will execute first then
condition will check.
pls correct me, if i am wrong..............
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / raja
After clause is default, but before clause also there.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ravi
Before advancing is not there.
only after advanving is allowed
| Is This Answer Correct ? | 0 Yes | 2 No |
what do you mean by copybook? and what is the difference between the copybook which we are using in working storage and procedure division.
What care has to be taken to force program to execute above 16 Meg line?
How to find out the closest prime number of an input number? I believe it has something to do with SEARCH and COBOL Linear Array.
what is dynamic array in cobol? what is the difference b/w array and table in cobol?
what is the diff b/w select stsmt and cursor ?
What is the difference between a DYNAMIC and STATIC call in COBOL?
how do you reference the variable unblock file formats from cobol programs
If you were passing a table via linkage, which is preferable - a subscript or an index?
What is the Purpose of Pointer in the string?
How many maximum number of procedures can we write in one COBOL program?
How to display string in the reverse order using occurs clause?
what r the types of perform statement