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


Please Help Members By Posting Answers For Below Questions

What are declaratives and what are their uses in cobol?

697


example for sub strings ? and refernce modifications whit output pls

1833


Can a Search can be done on a table with or without Index?

796


How arrays can be defined in COBOL?

658


What are the pertinent COBOL

2035






How do get the result of your program directly on your pc?

1870


Can we redefine the field of x(200) to less than 200?

805


how do you reference the esds vsam file formats from cobol programs

623


What is the difference between structured cobol programming and object alternativelyiented cobol?

746


What is the use of intialize verb?

735


What are literals?

622


What type of SDLC u followed? Why?

1510


explain sorting techniques in cobol program?

678


how do you reference the ksds vsam file formats from cobol programs

645


Can we change the password using ALTER? anyone tried and changed?

1535