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
Name the divisions, which are available in a cobol program?
how do you reference the ksds vsam file formats from cobol programs
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
1.give the details about WHEN OTHER. 2. how many form are available in evaluate.
What is the LINKAGE SECTION used in COBOL?
What is the difference between comp and comp-3?
How to remove the spaces at the end of each record in the output file of variable length, via cobol program?
Explain the configuration section of a cobol program with examples of syntax.
How do you define a variable of comp-1 and comp-2?
What is the difference between structured cobol programming and object alternativelyiented cobol?
What is the utilization of copybook in cobol?
What are the pertinent COBOL commands?
What is the usage of comp fields in cobol?
What is the compute verb? How is it used?
I have File 1 occurs 5 times with Employee-ID,Employee-Name,Employee-Dept (EEE and MECH). I have File 2 occurs 10 times with Employee-ID,Employee-Name,Employee-Dept (EEE,CIVIL,CHEMICAL and MECH). In FIle 1 and FIle 2 , for matching Employee-DEPT (Only MECH) , we need to move entire records from file1 to file 2. We should not use 2D array. Your help is needed here.