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 the default value of DISP parameter?
What is the default value(s) for an initialize and what keyword allows for an override of the default?
In the JCL, how do you define the files referred to in a subroutine ?
What is file status 39 ?
What are the various section in data division and briefly explain them.
WT R TECHNICAL MAINFRAME QUESTION ASKED IIN ANJANASOFTEARE??
Can we dynamically increase the size of occurs clause? i.e In case I an not sure of the size of array and want to increase the size at run time.If yes , how?
can you declare redefine in level 01?
how to access the file from prodution from changeman tool and to submit a file to production
State the various causes of s0c1, s0c5 and s0c7.
How do define dynamic array in cobol. how do you define single dimensional array and multidimensional array in your cobol?
perform I from 0 by 1 until I=5?How maney times it will executes