wht is the difference between goto and perform stmts
Answers were Sorted based on User's Feedback
Answer / venu
in go to the control will be transferred to either forward
or backward.once u pick to forward it wont come backward.
only single iteration will be done in go to.
in perform the control transferred to both backward n
forwars also, here multiple iterations will be done.
| Is This Answer Correct ? | 41 Yes | 5 No |
Answer / tata
perform is transfer control to a particular para and after
execution of that para contol comeback to the next statement
of perform.....
goto is also transfer control to a particular para and after
execution of that para contol goes forward... control never
comeback to next statement of goto......
| Is This Answer Correct ? | 24 Yes | 1 No |
Answer / makar
First, what are they use for?
1) 'Go to' statement is use when you want to perform a para
or skip some para's(Somtimes tag are used instead of para)
and jump to next para or tag, without the control comming
back to statement after go to. It is like a Jump.
2) 'Perform' is used when you what to want to perform a
para and want the control to comeback to called statement.
However if you do not use EXIT statement at the end of the
para, it will 'fall thru' and perform the next para. Always
use Perform.. thru and Exit statement if you want the
control to come back.
| Is This Answer Correct ? | 25 Yes | 3 No |
Answer / ravi
we can have control over perform but in goto we can not
have control.
| Is This Answer Correct ? | 14 Yes | 4 No |
Answer / praveen b
Even though i read 6 answers still have a small confusion
regarding goto.
It will be more clear if someone can explain the difference
through a piece of code.
Thanks in Advance.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / jinna
Goto is unconditionally transferring the control elsewhere in the program but Perform is after execution the control return to statement
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / lu
goto is different than perform...goto only don't give you
any execution ...perform execute your stament.....Like
english language...
| Is This Answer Correct ? | 5 Yes | 6 No |
If i initialize the 01 level variable in array, will it initialize all the array elements (occurs)?
When is a scope terminator mandatory?
What are the differences bitween cobol and cobol-2?
why we are using picture clause in the cobol programs?
) what is the difference between AID and HANDLE AID?
Can we call a CICS program from a batch program or viceversa?If so, how?
What are options have been removed in COBOL 11?
C1 C2 C3 are three conditions whose TRUTH values are as folloes. C1-TRUE C2-FALSE C3-TRUE A,B,C are defined as given below A:C1 AND(NOT C2) OR C3 B.(NOT C1) OR (NOT C2 AND NOT C3) C.(C1 OR C2)AND C3 D.C1 AND C2 OR C3 given the above information which of the following statements are valid? a.only A,B and C are TRUE b.only A,C and D are TRUE c.A,B,C and D are TRUE d.only C and D are TRUE
What are 77 levels used for?
What are ISOLATION LEVELS? Where do we need to specify them in compiling JCL (Exactly which statement and what is syntax for it)?
What is the default value(s) for an initialize? What keyword will allow for an override of the default?
Can we access the a[0] in the array ?