What is the difference between NEXT SENTENCE and CONTINUE?
Answer Posted / vampire
if we give next control will execute after full stop
ex
01 pic a x(10).
01 pic b x(10)
next sentence
01 pic c x(10)
01 pic d x(10)
01 pic e x (10).
01 pic f x(10).
it ill skip 01 pic c x(10)
01 pic d x(10)
01 pic e x (10).
continue perform all executable statements
01 pic a x(10).
01 pic b x(10)
continue
01 pic c x(10)
01 pic d x(10)
01 pic e x (10).
01 pic f x(10).
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
Are you comfortable in cobol or jcl?
What is the difference between a binary search and a sequential search? What are the pertinent cobol commands?
How to know whether the module is dynamical or statistical?
What is a SSRANGE and NOSSRANGE?
can anybody post me about file-aid and changemen tools pls and give me reference if any mainframe guys are there
How to print 10 to 1 if the input have only 10 digit number?
If you are current on the owner of a set, what is the difference between obtain next and obtain first?
What is amode(24)?
explain sorting techniques in cobol program?
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
Name the divisions, which are available in a cobol program?
how do you reference the variable unblock file formats from cobol programs
What are the different rules to perform a Search?
What are various search techniques in cobol? Explain.
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?