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 / vel
9
| Is This Answer Correct ? | 5 Yes | 7 No |
Post New Answer View All Answers
What is the difference between a binary search and a sequential search? What are the pertinent cobol commands?
Why do we code s9 (4) comp. Inspite of knowing comp-3 will occupy less space?
How you can characterize tables in cobol?
How do get the result of your program directly on your pc?
How to change size of Initial number of records to *NOMAX for ALL PF files from perticular library, how can I do that
what is the difference between COBOL2 AND COBOL390?
i want a program using by if, evaluate , string, unstring, perform, occurs?
Name the sections present in data division.
What is the usage of comp fields in cobol?
When is inspect verb is used in cobol?
What type of SDLC u followed? Why?
How do u write test cases?
What are the different rules for performing sort operation?
How do you code cobol to access a parameter that has been defined in jcl? And do you code the parm parameter on the exec line in jcl?
i have 10 names in an array and my name is one of them also array is not in sorted order i need to display my name using index how will i do this