if a=b how the flow will complete???
perform test through test-exit.
perform activa through activa-exit.
test.
if a=b then
next sentence
else
move a to c.
test-exit.
exit.
activa.
--
--
activa-exit.
exit.
Answer Posted / subbu
It will come out of the activa-exit.
Mans a the condition is a=b fist it will perform "perform
test through test-exit."
if a=b then
next sentence --> comes here
else
move a to c.
test-exit.
exit.
As it is satisfying the if part it should go to next
sentence i.e it will come out of the text-exit.
Now it will perform "perform activa through activa-exit."
so it will come out of the activa-exit.
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What is an in line perform? When would you use it? Anything else you wish to say about it.
What is the default value(s) for an initialize and what keyword allows for an override of the default?
) how do u code after getting data?
What is the difference between comp and comp-3?
Differentiate between structured cobol programming and object-oriented cobol programming.
What is the difference between structured cobol programming and object alternativelyiented cobol programming?
How do you get the data to code the BMS macro?
Write a program to enter and display the names of students in a class using the occurs clause.
Have you used comp and comp-3 in your project? And how?
What is the use of intialize verb?
There are 5 fields and 1000 records in a file. Unload it into an array. Write the syntax for declaration and how will you unload it.
How to fetch 1000 error records from VSAM file(Eg: 1000000 records present) while getting SOC7 abend ?
what is difference between cobol and cobol/400
Write some characteristics of cobol as means of business language.
How to remove 2 duplicate records and copy only one using job control language?