Difference between next and continue clause
Answer Posted / anil prajapati
When we use CONTINUE.it will take the execution control to
statement after the immediate explicit scope terminator.
and NEXT SENTENCE will take the execution control to
statement after the immediate period.
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
how do you reference the variable block file formats from cobol programs
What is the problem of ordered sequential files access?
Explain sorting techniques in cobol program? Provide the sort file definition, the sort statement, its syntax and meaning
How many sections are there in data division in COBOL?
Explain how to differentiate call by context by comparing it to other calls?
I have a File that has duplicate records. I need only those records that occur more than thrice.?
What is difference between static and dynamic call in cobol?
What is the difference between comp and comp-3 usage?
What are the different open modes available in cobol?
Can you please let me know the centre name of INS certification in Kolkata.
Difference between array and sub-script ?
What are the different data types in cobol?
What is the difference between Structured COBOL Programming and Object Oriented COBOL programming?
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?
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?