Wat is the difference between NEXT and CONTINUE statement in
cobol,can any one explain with example.
Answer Posted / shubha
continue is no operation stmt, which transfers the control
to next stmt.
where as 'next sentence' transfers the control to next
sentence.
| Is This Answer Correct ? | 29 Yes | 10 No |
Post New Answer View All Answers
How do define dynamic array in cobol.
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.
What is difference between static and dynamic call in cobol?
What rules are followed by the search verb.
Which mode is used to operate the sequential file?
explain sorting techniques in cobol program?
What is the difference between PIC 9.99 and PIC9v99?
What is the difference between a binary search and a sequential search what are the pertinent cobol?
How can i load all the data from a file to Table (array) in cobol.How i manage the occurs clause with out reading the file.Any options avilable ? Please can any one help me it is urgent?
What are 77 levels used for?
What is the use of intialize verb?
What is static and dynamic call in cobol?
I need to compare 3 variables(dates) and do some processing based on the earliest date. There could be more then 1 date record in any of the 3 fields. What is the best way to code this?
What is the Purpose of Pointer in the string?
Why do we code s9 (4) comp. Inspite of knowing comp-3 will occupy less space?