What is the difference between Perform para and perform
asaection in cobol?
Answers were Sorted based on User's Feedback
Answer / sruthi
perform para means only that particular para will be
executed.
section can have one or more paras.
so perform section means the paras under that section will
be executed.
Thanks,
sruthi.
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / ssampath
Perform para is just one paragraph and perform section can
perform multiple para's.
| Is This Answer Correct ? | 2 Yes | 0 No |
what are the diferences b/w sub-script and index?
Can anyone please give the example of Inline Perform.
can i give 9(10) in comp 3 instead of s9(10) ? if i can give wht would be ths ans
what is amode(24), amode(31), rmode(24) and rmode(any)?
When would you use in-line perform?
Explain about different table spaces.
Give some examples of command terminators?
How to display the index.(displacement from an array)
consider the following piece of code 01 GROSS-PAY 05 BASIC-PAY PIC 9(5) 05 ALLOWENCES PIC 9(3) if BASIC-PAY has a value 1000 and ALLOWENCES has a value of 250,what will be displayed by the statement DISPLAY GROSS-PAY a.1250 b.01000250 c.01250 d.1.250
what happens if we wont give timestamp in precompilation process ?
What is the problem of ordered sequential files access?
I am sending values a and b with pic x(10) and pic x(10) by using call statement. In linkage section, I am receiving values with pic x(10) and pic x(11). Will my program fail? will it be compile error or run time abend?