Wat is the difference between NEXT and CONTINUE statement in
cobol,can any one explain with example.
Answers were Sorted based on User's Feedback
Answer / mahalakshmi
the flow of the program for next sentence the control ll
move to . period. in continue the control will go to the
next line.
| Is This Answer Correct ? | 4 Yes | 6 No |
I have a sequential file. How do I access a record in this sequential file randomly in my program ?
How may divisions are there in JCL-COBOL?
What does the initialize statement do ?
What are differences between COBOL and java ? why we are giving more preference to COBOL ?
suppose a cobol programme A calling programme B,C and D. If C undergoes some change what if A,B,C,D need to be recompiled or only C nee to be recompliled.
which is better comp or comp-3 in terms of memory utilization?
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?
I have the file which is having the extension no as records. sample file will look like below. 2310 3410 3256 4350 3781 5408 I need to replace the record which is starting with 3 to 5 (i.e) 3410 to 5410. How can we do it through cobol and cobol-db2 program? I need the possible logic?
study the following 01 A PIC 99V0 VALUE 5 01 B PIC 9V9 VALUE 6 01 C PIC 99V9 VALUE 2.5 01 D PIC 99 VALUE 3 COMPUTE A ROUNDED B C = A+B*C/D ON SIZE ERROR PERFORM PRINT-ERROR the comments of A.B.C after execution of the above statement are a.A=10 B=0 C=10 b.A=10 B=9.9 C=9.9 c.A=10 B=0 C=9.9 d.A=10 B=6 C=10
if you give cylinder(1,1)how many cylinders it will be allocate?
Can printer files (having 133 characters) be of variable length?
How to covert given string into ASCII value in COBOL/MF COBOL