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

Post New Answer

More COBOL Interview Questions

Describe the difference between subscripting and indexing ?

2 Answers  


what is Pic 9v99 Indicates?

2 Answers  


can I copy book which contain db2 statment in procedure divion?

2 Answers   Bank Of America,


what is the difference between Normal vaiable and comp variable.

5 Answers   DELL,


Mention the guidelines to write a structured cobol program?

0 Answers  






If there are two copybooks which have same variables and we are using both the copybooks in our program. will there be an error and if i move values to the variable which copybook varibales gets the values i move in.

3 Answers   CTS,


how to convert vsam table into DB2 table?

1 Answers   IBM, Wipro,


How do you define a sort file in JCL that runs the COBOL program?

6 Answers   Syntel,


In an EVALUTE statement is the order of the WHEN clauses significant?

4 Answers  


What is LENGTH in COBOL II?

2 Answers   CSC,


I have a PS file and I would like to manually insert the binary values (like a COMP format) into the file. How can i do that? the way do in COMP-3 format.. suppose i want to insert -12345 in to file in comp-3 format. simply we can open a file in edit mode and do HEX-ON and insert the value . SEE BELOW-- 135 24D in 3 bytes - this will be COMP-3 presenatation of -12345.

1 Answers  


how can u redefine picx(10) with pic 9(6).

3 Answers   TCS,


Categories