77 I pic 99 value 5
Perorm para-A I times.
Para -A.
move 10 to I.
How many times the para-A will be executed.?
Answers were Sorted based on User's Feedback
Answer / rana
Only 5 Times as it won't take the 10 which is intialized in
Para-A.
| Is This Answer Correct ? | 16 Yes | 4 No |
Answer / sivaram
It goes into loop since the variable takes the 10 in it
every time when it performs.Generally the variable should be
decremented by 1 for correct results.
| Is This Answer Correct ? | 4 Yes | 4 No |
Answer / kiran
5 times
why bcoze once para-A I times executed,initially the value
of i=5;
5 time para -A executed
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / gowtham
Hi, I have executed above code and it performed 6 times. SO the answer is 6 times.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / chinna
Please confirm which ans is correct ?
why it wont take I = 10?
can any one give explanation ?
Thanks ,
| Is This Answer Correct ? | 1 Yes | 2 No |
Answer / suputhru
Para -A.
move 10 to I.
display I.
it will move 10 to I upto 5 times.
10 20 30 40 50.
it will execute 5 times only.
| Is This Answer Correct ? | 3 Yes | 4 No |
Answer / prachi
when it will execute perform statement for the first time,
the value in i is 5..Then it is moving 10 to i ..So when it
will execute the perform 2nd time...that time the value of
i is 10..so Para-A will be performed 11 times...
Please let me know my ans is correct or not...
| Is This Answer Correct ? | 0 Yes | 3 No |
what is MSGLEVEL?
What does the INITIALIZE verb do?
What are 77 levels used for?
what are the diferences b/w sub-script and index?
how to transfer the file from pc to mainframe??
what are decleratives in cobol?
Why we need to use redefine clause when we can define the variable seperately... what is actual need....
If A>B next sentence end-if display 1 display 2. display 3. If a>b, it will display only 3.(the next sentence, ie., after fullstop/period) ____________________________________ if a>b continue end-if display 1 display 2. display 3. If a>b, it Will display 1 2 3 (the next statement) ____________________________________ if a>b continue display 1 end-if display 2 display 3. display 4. If a>b, Will it display 2 3 4 (or) 1 2 3 4 ?
in cobol main pgm is calling sub pgm but sub pgm does not exists , what abend i get if submit the job?
Consider the below example call a-test1. -- -- -- a-test1. if a=b perform a-test through a-exit next sentence else if b=c perform c-test through c-exit. if a=d perform d-test through d-exit. a-test. -- -- a-exit. exit. can u tell me what will happen if a=b after looping into a-exit will the control go back to a- test1. will the condition a=d be checked???
When the working storage variables get allocated? a.At Compile time b.At starting of the run time c.At end of the run time. d.None of these
What is XDC ?