consider the following two statements
MOVE 10 TO N
PERFORM PARA-X N TIMES
STOP RUN
PARA-X
MOVE 5 TO N
how many times PARA-X willbe exicuted?
a.10
b.5
c.infinate
d.execution error
Answer Posted / guest
10
| Is This Answer Correct ? | 12 Yes | 0 No |
Post New Answer View All Answers
How to get the last record in vsam file in cluster? And how can you get the ksds file records into your cobol program?
Write a program to enter and display the names of students in a class using the occurs clause.
Mention the guidelines to write a structured cobol program?
how do you define single dimensional array and multidimensional array in your cobol?
Define static linking and dynamic linking.
How to find out the closest prime number of an input number? I believe it has something to do with SEARCH and COBOL Linear Array.
How many bytes S(8) comp field occupy and its maximum value?
What the difference is between continue and next sentence?
) how do u code after getting data?
here is my requirement A1 is alphanumeric with value 'A1B2C3D4' as defined below 05 A1 PIC X(8) VALUE IS 'A1B2C3D4' but i need to have A2,A3 as ABCD & 1234 repectively...... A2 = ABCD A3 = 1234 Can you please explain me what are the different ways to do it?
What are the different types of condition in cobol and write their forms.
What is the difference between Call and a Link?
How can we find that module can be called – whether DYNAMICALLY or STATICALLY?
How to know whether the module is dynamical or statistical?
2 input fles: 2 flat files, with different number of records. both are having unique key for each record and already sorted in ascending order . match these files using unique key and in output only matching key value has to be written. please procide cobol logic