Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


wht is the difference between goto and perform stmts

Answers were Sorted based on User's Feedback



wht is the difference between goto and perform stmts..

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

wht is the difference between goto and perform stmts..

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

wht is the difference between goto and perform stmts..

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

wht is the difference between goto and perform stmts..

Answer / ravi

we can have control over perform but in goto we can not
have control.

Is This Answer Correct ?    14 Yes 4 No

wht is the difference between goto and perform stmts..

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

wht is the difference between goto and perform stmts..

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

wht is the difference between goto and perform stmts..

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

Post New Answer

More COBOL Interview Questions

If i initialize the 01 level variable in array, will it initialize all the array elements (occurs)?

8 Answers   CTS,


When is a scope terminator mandatory?

3 Answers  


What are the differences bitween cobol and cobol-2?

1 Answers   Wipro,


why we are using picture clause in the cobol programs?

2 Answers  


) what is the difference between AID and HANDLE AID?

0 Answers   IBM,


Can we call a CICS program from a batch program or viceversa?If so, how?

3 Answers  


What are options have been removed in COBOL 11?

1 Answers  


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

1 Answers   TCS,


What are 77 levels used for?

0 Answers  


What are ISOLATION LEVELS? Where do we need to specify them in compiling JCL (Exactly which statement and what is syntax for it)?

2 Answers   T systems,


What is the default value(s) for an initialize? What keyword will allow for an override of the default?

0 Answers  


Can we access the a[0] in the array ?

6 Answers   DCL, IBM,


Categories