What is an in-line perform ?

Questions by sprabodhini

Showing Answers 1 - 24 of 24 Answers

Inline perform executes set of statments without going to
any paragraph written seperately.Depending on
scenario.....for example

   Move 0 to sum-of-digits.
   Move 1 to counter.
   perform until counter > 10
     Add counter to sum-of-digits
     Add 1 to counter
   End-perform.

Here the perform won't perform beyond the para.The scop of the perform will be within the same para is called In-line perform.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions