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 |
What is the Purpose of POINTER Phrase in STRING command
In COBOL programming, what is PERFORM? What is VARYING?
I have File 1 occurs 5 times with Employee-ID,Employee-Name,Employee-Dept (EEE and MECH). I have File 2 occurs 10 times with Employee-ID,Employee-Name,Employee-Dept (EEE,CIVIL,CHEMICAL and MECH). In FIle 1 and FIle 2 , for matching Employee-DEPT (Only MECH) , we need to move entire records from file1 to file 2. We should not use 2D array. Your help is needed here.
In A cobol program , we can use COPY Statement in FILE- SECTION / WORKING-STORAGE SECTION / ENVIRONMENT DIVIION basically what is the difference
What are the different data types in cobol?
Consider the following: 77 W-NUM PIC 9 VALUE 0 ------ MOVE 1 TO W-NUM PERFORM PARA-X UNTIL W-NUM > 9. ------ PARA-X ADD 1 TO W-NUM How many times PARA-X is executed ?
i WANT ALL ERROR codes IN CICS and DB2
What are the situations u have used in ur project for Subcript and Index ? 1.if u use Subscript why not Index,why u choose Subscript only? 2.if u use Index why not Subscript,what abt Displacement?
How will you find the currepted records in a file
How to get the last record in vsam file in cluster? And how can you get the kids file records into your cobol program?
What is the difference between performing a SECTION and a PARAGRAPH?
What will happen if we move SPACES to numeric field and ZEROES to alphabetic field?