Should I use STOP RUN in the sub program??why?
Answer Posted / veni
If STOP RUN is used in the sub program, execution will
terminate there itself and it will never come to main
program. Thats why we have to use only GOBACK in the sub
programs.
Normally, we will code STOP RUN only in main programs not
in sub programs.
| Is This Answer Correct ? | 13 Yes | 0 No |
Post New Answer View All Answers
Explain what you understand by passing by value.
Differentiate between structured cobol programming and object-oriented cobol programming.
Why would you use find and get rather than to obtain?
What is link edit in cobol?
What are all the divisions of a COBOL program?
Which mode is used to operate the sequential file?
How to read the 2nd last record of a VSAM file? (The file size is huge and we don't know the key)
if we display var1 then what will b displayed in below condition. 77 var1 pic s9(2) value -10. 77 var1 pic s9(2) value -11. " " " -12. " " " -13. -14 ... ... -19.
What is the difference between comp and comp-3 usage?
What are the cobol coding sheets?
how do you reference the variable unblock file formats from cobol programs
Write a program to enter and display the names of students in a class using the occurs clause.
) How do u handle errors in BMS macro?
Explain how will you differentiate between an internal and an external sort, the pros and cons, internal sort syntax etc
What is the default value(s) for an initialize? What keyword will allow for an override of the default?