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 is the usage of comp fields in cobol?
i made it to stage 3 of an interview process wednessday they will quiz my knowledge again face to face for an analyst role recruiter said it will be based on Business requirements system is cobol and good ideas what they might ask etc
What are different data types in cobol?
how to move the records from file to array table. give with code example
How to get the last record in vsam file in cluster? And how can you get the kids file records into your cobol program?
i need a small 3d program using inline and outline.
What is perform what is varying?
How to remove 2 duplicate records and copy only one using job control language?
What are INPUT PROCEDURE and OUTPUT PROCEDURE?
Why do we code s9 (4) comp. Inspite of knowing comp-3 will occupy less space?
Write the code implementing the perform … varying.
What is the difference between a binary search and a sequential search what are the pertinent cobol?
how do you reference the rrds file formats from cobol programs
Why occurs cannot be used in 01 level 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.