What is the difference between NEXT SENTENCE and CONTINUE?
Answer Posted / vampire
if we give next control will execute after full stop
ex
01 pic a x(10).
01 pic b x(10)
next sentence
01 pic c x(10)
01 pic d x(10)
01 pic e x (10).
01 pic f x(10).
it ill skip 01 pic c x(10)
01 pic d x(10)
01 pic e x (10).
continue perform all executable statements
01 pic a x(10).
01 pic b x(10)
continue
01 pic c x(10)
01 pic d x(10)
01 pic e x (10).
01 pic f x(10).
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What are declaratives and what are their uses in cobol?
HOw can I get the negative sign while deduct high value from low value
What is the difference between a binary search and a sequential search? What are the pertinent cobol commands?
How do define dynamic array in cobol. how do you define single dimensional array and multidimensional array in your cobol?
What is the default value(s) for an initialize? What keyword will allow for an override of the default?
What is cobol?
How many sections are there in data division in COBOL?
If you are current on the owner of a set, what is the difference between an obtain next and obtain first? Actually in which topic will we use dis???Plz explain it clearly
Write a cobol program making use of the redefine clause.
How can we find that module can be called – whether DYNAMICALLY or STATICALLY?
What is static and dynamic call in cobol?
What is rmode(24)
What is link edit in cobol?
Explain how you can characterize tables in cobol?
write a cobol logic. i have file that has 10 records .1 record go to first output file and second record goes to 2 output and etc