Wat is the difference between NEXT and CONTINUE statement in
cobol,can any one explain with example.
Answer Posted / shubha
continue is no operation stmt, which transfers the control
to next stmt.
where as 'next sentence' transfers the control to next
sentence.
| Is This Answer Correct ? | 29 Yes | 10 No |
Post New Answer View All Answers
What the difference is between continue and next sentence?
What rules are followed by the search verb.
what is difference between cobol and cobol/400
What is the local-storage section?
Which is not true about evaluate statement
Can you please let me know the centre name of INS certification in Kolkata.
Give some examples of command terminators?
How do you get the data to code the BMS macro?
I have a program with an Array of 5000 occurences which is being passed from 5 sub levels to the front end screen. Thess 5 programs using each 5*2 = 10 different arrays with size as 5000. This is causing the transaction to utilize more storage consupmtion. I am looking to reduce the storage consumption. As part of that initially i thought Dynamic array may solve my problem. After viewing the comments given i see its same as normal array. IS there any other way we can resolve this issue?
There are 5 fields and 1000 records in a file. Unload it into an array. Write the syntax for declaration and how will you unload it.
how to move the records from file to array table. give with code example
What is the compute verb? How is it used?
What are literals?
How do u write test cases?
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.