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 will happen if we try to create GDG (+2) generaton instead of (+1) generation?
01 xxx pic 9(4). 01 yyy pic 9(6). move 123456 into yyy. move yyy to xxx. display yyy. what would be the value of yyy
What is CALL statement in COBOL?
what is internal sort and external sort ? which is preferable ?
can anybody post me about file-aid and changemen tools pls and give me reference if any mainframe guys are there
what is the coding difference between COBOL and CICS.
Can anyone explain me CALL procedure in COBOL.Does it carries similarities like call by reference in C.
i have a file which contains records like 10,30,90,50,20,40,80,60,70 i want to display these records in reverse order like 70,60,80,40,20,50,90,30,10 please give me the cobol code (do not sort the records)
3 Answers Cap Gemini, Mind Tree,
what is meaning by design document? who can repared for this?
how to fetch the record before the last record in a cobol file( its a huge file and if the key field is not known)
in the TIME parameter we r giving hours r minutes
Name the divisions in a COBOL program ?