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 dynamic array in cobol? what is the difference b/w array and table in cobol?
What is the difference between performing a SECTION and a PARAGRAPH?
Explain complete concept of table handling in COBOL with an example?
I got user abend U4038 while compiling my runjcl.. can anyone help me?
I have a PS file and I would like to manually insert the binary values (like a COMP format) into the file. How can i do that? the way do in COMP-3 format.. suppose i want to insert -12345 in to file in comp-3 format. simply we can open a file in edit mode and do HEX-ON and insert the value . SEE BELOW-- 135 24D in 3 bytes - this will be COMP-3 presenatation of -12345.
How To Separate The Numerics From An Alphanumric Data Item Which Contains Both Alphabates And Numerics ?
waht is inspect verb? where it can be in real time?
write a cobol logic. i have file that has 10 records .1 record go to first output file and second record goes to 2 output and etc
What is file status 92?
i declare a Table as OCCURS 2000 TIMES.If the input file has more than 2000 records will the COBOL program fail?
a. Can the OPTIONAL clause in COBOL only be coded for input files? b. If it is coded for files opened in OUTPUT, I-O or EXTEND mode, will it give a compilation error? c. If there are no compilation errors and if such files are not coded in the JCL, will the OPEN statement run fine when these files are opened? d. How will a WRITE statement work for the above files?
How do define Dymanic array in cobol how do u define single demensional arry and multidymensional arry in ur cobol.