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 |
What is length is cobol?
What is the difference between structured cobol programming and object alternativelyiented cobol programming?
When search all is used in cobol program without sorted input data?
6 Answers CGI, Principal Finance,
how to remove leading spaces and zeroes in a cobol variable.is there any easy way to do it
wht is load module and object module ?
What is difference between static and dynamic call in cobol?
Name the sections present in data division.
What is the mode in which you will OPEN a file for writing?
01 a pic 9(6) value is 123456 01 b pic 9(3) move a to b wht will be the value ?
What is SET TO TRUE all about, anyway?
How do you reference the fixed block file formats from cobol programs
what is lrec=f,what is difference between f,fb,v,vb?what is default value?how do we came to know that records are in f,fb,v,vb?