How do you do in-line PERFORM?
Answers were Sorted based on User's Feedback
Answer / mahathiaz
PERFORM ... <UNTIL> ...
<sentences>
END-PERFORM
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / saravanan
IN inline perform the procedure name is omited.an inline
perform must be delimited by the end peform statement
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / ravikiran
in inline perform the statements with in the loop does n't
contain a period '.'
inline perform does not contain any para.
perform until i > 4
display a
accept b
end-perfom.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / manvitha
In-line perform is used to perform the repetitive tasks within a paragraph or section itself.
Perform
statements
end-perform
perform until condition
statements
end-perform
perform WITH TEST before/after until condition
statement
end-perform
| Is This Answer Correct ? | 1 Yes | 0 No |
What is SDSF?
What is the different between index and subscript?
Can we redefine the field of x(200) to less than 200?
How would the number +1234 be stored if a PIC clause of PICTUREs9(4) comp-3 were used?
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???
I have a File that has duplicate records. I need only those records that occur more than thrice.?
what are the paramater we cannot use in procedure?how many instream we can write in single jcl?can we call instream to catalog and ctalog to instream?
Which of the following characters is NOT valid in column 7? a. - b. \ c. * d. # e. $
What is the difference between SEARCH and SEARCH ALL? What is more efficient?
what is difference bt COND, REGION & TIME parameters at JOB & EXEC. give an exp.
what is dynamic array in cobol? what is the difference b/w array and table in cobol?
can we read in input the file with a variable length ? please , how ..could you help me ?