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 amode(31)
Why do we code s9 (4) comp. Inspite of knowing comp-3 will occupy less space?
Explain sorting techniques in cobol program? Provide the sort file definition, the sort statement, its syntax and meaning
i have n records in one file and in this file there is some fields and i want to count that how many sharma in my file so plz give the coding that how we read sharma ?
How to remove the spaces at end of each record in the output file Via COBOL program? note: The file has a VB length
What is the compute verb? How is it used?
i have a sequencial file contains multiple records, i want to extract one row which contains various fields like order number,date,warehouse,.ect.. in to the another file by accepting the order number from jcl. how can i do it. pls help me..
IF I mention stop run in CICS what happens?
Is it possible to mutliply a comp variable with an comp-3 variable. Will there be any error if i do it?
if a file has 1000 recods how copy the records from 1 to 100 records using sort
which is better comp or comp-3 in terms of memory utilization?
how do you reference the rrds file formats from cobol programs