Difference between next and continue clause
Answer Posted / mahesh
Continue will take the control to the next statement.
Eg:
else if cond
continue|next sentence
else
perform imperative statement
end-if
move xxx to yyy. ---1
move zzz to yyy. ---2
In this case control will be transferred to line 1.
Next sentence will transfer the control to the next
sentence.That is line no.2.
Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What are the different open modes available in cobol?
How do you code cobol to access a parameter that has been defined in jcl? And do you code the parm parameter on the exec line in jcl?
How to remove 2 duplicate records and copy only one using job control language?
Which mode is used to operate the sequential file?
Mention the guidelines to write a structured cobol program?
Why is it necessary that file needs to be opened in I-O mode for REWRITE?
How to read the 2nd last record of a VSAM file? (The file size is huge and we don't know the key)
How do we get current date from system with century in COBOL?
What type of SDLC u followed? Why?
What are the different rules of SORT operation?
how do you reference the esds vsam file formats from cobol programs
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 is the difference between a binary search and a sequential search? What are the pertinent cobol commands?
Define cobol?
What is the use of intialize verb?