How do you do in-line PERFORM?

Answers were Sorted based on User's Feedback



How do you do in-line PERFORM?..

Answer / mahathiaz

PERFORM ... <UNTIL> ...
<sentences>
END-PERFORM

Is This Answer Correct ?    7 Yes 0 No

How do you do in-line PERFORM?..

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

How do you do in-line PERFORM?..

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

How do you do in-line PERFORM?..

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 ?    0 Yes 0 No

Post New Answer

More COBOL Interview Questions

can anybody post me about file-aid and changemen tools pls and give me reference if any mainframe guys are there

1 Answers  


If I want to increase the Limit in GDG. What should I do?

1 Answers   IBM,


what is soc7 abend?how u can trace it?

4 Answers   Accenture,


if a pic 9(3) value 354,b pic x(2) value '46' then a)a>b 2)a<b 3)error

8 Answers   Cap Gemini,


What is the difference between Structured COBOL Programming and Object Oriented COBOL ?

1 Answers  






where do we use dyanamic call ? and where do we use static call pls give any example pls ?

3 Answers   Patni,


In a COBOL program, 2 tables TABLE1 and TABLE2 are defined that are indexed by INDEX1 and INDEX2 respectively. Can we use INDEX1 with TABLE2 and INDEX2 with TABLE1?

1 Answers  


What is the significance of the PROGRAM-ID paragraph? If this name doesnt match with the name of the COBOL program, does it make a difference? Is the name specified in the PROGRAM-ID paragraph used as a name for the load module or any such thing?

4 Answers   IBM,


Is it possible to mutliply a comp variable with an comp-3 variable. Will there be any error if i do it?

3 Answers   IBM, UST,


waht is inspect verb? where it can be in real time?

1 Answers   Patni,


what will be the output when a)pic 9(6)value 000178 is moved to pic ***,***. b)pic 9(5) value 57397 is moved to pic $$,$$9.

5 Answers  


what is the maximum error code in mainframe

2 Answers  


Categories