Consider the following:
77 W-NUM PIC 9 VALUE 0
------
MOVE 1 TO W-NUM
PERFORM PARA-X UNTIL W-NUM > 9.
------
PARA-X
ADD 1 TO W-NUM
How many times PARA-X is executed ?
Answer Posted / ajith
9
| Is This Answer Correct ? | 2 Yes | 5 No |
Post New Answer View All Answers
What is the usage of comp fields in cobol?
What is the default value(s) for an initialize? What keyword will allow for an override of the default?
Which division and paragraphs are mandatory for a COBOL program?
How to remove the spaces at the end of each record in the output file of variable length, via cobol program?
When is inspect verb is used in cobol?
What is the difference between next sentence and continue in cobol programing language?
Explain how to differentiate call by context by comparing it to other calls?
What is the local-storage section?
What type of SDLC u followed? Why?
How do define dynamic array in cobol. how do you define single dimensional array and multidimensional array in your cobol?
What is the difference between PIC 9.99 and 9v99 in COBOL?
State the various causes of s0c1, s0c5 and s0c7.
What is the Purpose of POINTER Phrase in STRING command in COBOL?
input 1 input2 ouput1 output2 output 3 1 re 300 1 re 200 1 re 300 3 rc 500 1 re 200 2 rr 400 1 re 300 2 rr 400 1 rc 400 3 rc 500 1 rc 400 2 rr 700 2 rr 700 5 tt 900 5 tt 900 2 inputs r in flat file and output 1 is matched records,ouptput2 is unmatched of input1,output3 is unmatched of input2! how vl u get the output files using sequential order and to check with each and every records! let me know the procedure division ?
if we display var1 then what will b displayed in below condition. 77 var1 pic s9(2) value -10. 77 var1 pic s9(2) value -11. " " " -12. " " " -13. -14 ... ... -19.