what r the types of perform statement
Answers were Sorted based on User's Feedback
Answer / jegadeesan
1. PERFORM PARA-NAME
2. PERFORM PARA-NAME N TIMES
3. PERFORM PARA-NAME UNTIL I > N
4. PERFORM PARA-NAME-1 THRU PARA-NAME-2
5. PERFORM PARA-NAME-1 THRU PARA-NAME-2 N TIMES
6. PERFORM PARA-NAME-1 THRU PARA-NAME-2 UNTIL I > N
7. PERFORM PARA-NAME-1 THRU PARA-NAME-2 VARYING I FROM 1 BY
1 UNTIL I > N
8. PERFORM PARA-NAME-1 THRU PARA-NAME-2 WITH TEST [BEFORE /
AFTER] VARYING I FROM 1 BY 1 UNTIL I > N
9. (IN-LINE PERFORM)
PERFORM I > N
END-PERFORM
Suggestions are welcome
JRamu
| Is This Answer Correct ? | 26 Yes | 2 No |
Answer / ajayre
Totaly 5 types of perform statements are there
1.Simple perform
2.PERFORM TIMES
3.PERFORM UNTIL
4.PERFORM VARYING
5.Perform with test after/test before.
They are two types of performs are there.one is INLINE
PERFORM and another one is outline perform .
Inline perform start and end with perform and end-perform
Outline perform start and end with perform and exit.
Ajay
| Is This Answer Correct ? | 25 Yes | 5 No |
Answer / malay
There are two types of performs statements in COBOL program.one is INLINEPERFORM and another one is OUTLINEPERFORM.Inline perform start and end with end-perform.
Outline perform start and end with exit statement.generaly these are
1.Simple perform
2.PERFORM TIMES
3.PERFORM UNTIL
4.PERFORM VARYING
5.Perform with test after/test before.
| Is This Answer Correct ? | 9 Yes | 2 No |
Answer / ananta bajpai
there main
1.perform [proc-name[{thru/through}end-proc]]repeat-count N
times[statement end-perform]
2.perform [para-name/proc-name{thru/through}[end-proc]]
[statement end-proc]
3.perform [proc-name{thru/through}[end-proc]][with test
{before/after}]varying variable from integer by increment
until condition[statement end-perform]
4.perform[proc-name{thru/through}end-proc]]varying variable-
name from integer by incremental until condition [statement
end-perform]
5.perform proc-name
6.perform n(number) times.
| Is This Answer Correct ? | 4 Yes | 1 No |
How to print 10 to 1 if the input have only 10 digit number?
Will the variable POS in the following code have a value of 2 or not? 01 POS PIC S9(4) COMP VALUE 2. 01 FIRST-NAME PIC X(10) VALUE 'ABC'. 01 LAST-NAME PIC X(10) VALUE 'XYZ'. 01 NAME PIC X(20) VALUE SPACES. STRING FIRST-NAME DELIMITED BY SPACES ' ' DELIMITED BY SIZE LAST-NAME DELIMITED BY SPACES INTO NAME WITH POINTER POS
How do you define a variable of comp-1 and comp-2?
hi, can you ppl tell me, how to check whether the rewrite we gave for the ksds file is successful or not in the program.? i gave rewrite, the rewrite code is executing and maxcc=0 but updation doenot happen in the file?
What is report-item in COBOL?
If you were passing a table via linkage, which is preferable - a subscript or an index?
What are the different rules of SORT operation?
Write a cobol program making use of the redefine clause.
what is the difference between occurs and occurs depending on? i dont think so there is the difference in storage..then why we should use occurs depending on?
how will u find out 3rd week's 2nd day using occurs ?
The hierarchy of the execution of logical operators is (a) NOT AND OR (b) AND OR NOT (c) OR AND NOT (d) OR NOT AND
10 Answers Huawei, IBM, TCS,
Can we use goto statement in inline_perform ?