Wat is the difference between NEXT and CONTINUE statement in
cobol,can any one explain with example.
Answer Posted / abhilash
Its simple
Both mean transfer of control.
Continue - Will transfer control to next statement after
explicit scope terminator.( end-if, end-perform etc.)
Get Next - Will transfer control to next statement after
Implicit scope terminator (. operator)
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Mention the guidelines to write a structured cobol program?
What is the utilization of copybook in cobol?
how do you reference the esds vsam file formats from cobol programs
what is search and searchall?what is the diffrence between them?give an best example?
How to remove the spaces at the end of each record in the output file of variable length, via cobol program?
Which is the default, TEST BEFORE or TEST AFTER for a PERFORM statement?
What is the difference between PIC 9.99 and PIC9v99?
What are all the divisions of a COBOL program?
What is inspect in cobol ?
Write a program to enter and display the names of students in a class using the occurs clause.
What are the different rules of SORT operation?
How did the release of cobol/370 version 1.3 improve the performance of release 1.1?
I have a program with an Array of 5000 occurences which is being passed from 5 sub levels to the front end screen. Thess 5 programs using each 5*2 = 10 different arrays with size as 5000. This is causing the transaction to utilize more storage consupmtion. I am looking to reduce the storage consumption. As part of that initially i thought Dynamic array may solve my problem. After viewing the comments given i see its same as normal array. IS there any other way we can resolve this issue?
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
Write the code to count the sum of n natural numbers.