What is an explicit scope terminator?
Answers were Sorted based on User's Feedback
Answer / mahathiaz
A scope terminator brackets its preceding verb, e.g. IF ..
END-IF, so that all statements between the verb and its
scope terminator are grouped together. Other common COBOL II
verbs are READ, PERFORM, EVALUATE, SEARCH and STRING.
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / vampire
scope terminators
2 types
implicit scope terminator
"."----dot
exit.
stoprun.
explicit scope terminator
end-if.
end-search.
end-evaluate
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / s.v.venkata sivaprasad
scope terminator is used to terminate the cobol statements
instead of period.
ex perform
st1
end-perform.,
search
st1
end-search.
| Is This Answer Correct ? | 1 Yes | 0 No |
S9(5)V9(2) occupies how many bytes memory ?
COBOL program to read the string ' BOMBAY' in reverse order as 'YABMOB'
What is JOBLIB and STEPLIB in JCL? what is the purpose of using it?
give the examples for strings and unstrings in cobol
What are decleratives in COBOL ?
created cluster using IDCAMS ..that is empty ..when i write a program for read using Input ..wil it open the cluster or gives any error?
what is a zoned decimal data type and how it will be stored?
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?
in cobol perform stmt whether it first checks the condition or not
What are the divisions in a cobol program? Which one is the mandatory division among them?
When is inspect verb is used in cobol?
How can we know that cobol program is using report file or simple file....?