What is the difference between CONTINUE & NEXT SENTENCE ?
Answers were Sorted based on User's Feedback
Answer / aji cherian
Continue - The control will go to the line next to a scope
terminator.
Next senece - The control will go to the next line after a
period symbol.
| Is This Answer Correct ? | 18 Yes | 1 No |
Answer / mdvasanth86
continue -> NEXT STATEMENT
next sentence -> NEXT SENTENCE (After the period(.))
| Is This Answer Correct ? | 0 Yes | 0 No |
how you will define variables length in cobol.
I have a COBOL main program which is calling sub program, the number of calling parameters used in main program are 4 whereas in sub program it's 5. Sub program is passing 5 parameters back to main program Will there be any compilation error? Or main program parameters displays junk values?
In COBOL CALL-CALLING,if a program A is calling 3 sub- programs, dynamically, then it is said sub-programs will always will always in Initial Mode. My question is : Do we need to code CANCEL or (IS INITIAL) for dynamically called sub-programs or it is the property of Dynamically called pgms so every time sub-pgms are called they will be in initial mode. ***This question is only Dynamic call****, Please reply. Thank you in advance.
How include time & date in the report generation in cobol programing?
What guidelines should be followed to write a structured cobol prgm?
We have 3 programms A,B,C.In the middle of the program A the controls goes to program B and in the middle of the program B control wants to go program C,after completion of program C again control comes to program B and again after completion of program B control comes to program A.How the process will takes and what are the controls we use for that process.If it is possible anybody of you explain with example?
How to retain the Duplicates in the one records?
Which division and paragraphs are mandatory for a COBOL program?
i need a small 3d program using inline and outline.
consider the following piece of code 01 GROUP-ITEM 05 AMOUNT-1 PIC 99V9 USAGE COMP VALUE 50 05 AMOUNT-2 PIC 9(4)V99 USAGE COMP MOVE ZERO TO GROUP-ITEM ADD 50 TO AMOUNT-1 what will be the content of AMOUNT-1? a.50 b.100 c.0 d.unpredictable
if a>b continue display x. dispaly y. end-if display 1 display 2. display 3. what should be my output ?
what happens when a copybook variables are declared using include statement ?