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 |
How many bytes do a s9 (7) comp-3 field occupy?
if we have a 10 steps how to override the 4th step in jcl?
What does the INITIALIZE verb do?
I have two questions here. 1. How to read a flat file in reverse order? 2. How to read a VSAM KSDS file in reverse order? In both the cases we donot know the total number of records.
C1 C2 C3 are three conditions whose TRUTH values are as folloes. C1-TRUE C2-FALSE C3-TRUE A,B,C are defined as given below A:C1 AND(NOT C2) OR C3 B.(NOT C1) OR (NOT C2 AND NOT C3) C.(C1 OR C2)AND C3 D.C1 AND C2 OR C3 given the above information which of the following statements are valid? a.only A,B and C are TRUE b.only A,C and D are TRUE c.A,B,C and D are TRUE d.only C and D are TRUE
We have 3 programms A,B,C.In the middle of the program A the controls goes to program B and in the middle of the program B control wants to go program C,after completion of program C again control comes to program B and again after completion of program B control comes to program A.How the process will takes and what are the controls we use for that process.If it is possible anybody of you explain with example?
what is SYNCHRONIZATION?
wht is structured cobol pgm and non structred cobol pgm ?
can i use multiple when statements in search & search all ? justify ur answer?
How can you get the ksds file records into your cobol program?
01 a pic x(4) value 'abcd' 01 b pic 9(3) can we move from a to b.if possible what would be stored in b.
Difference between cobol and cobol-ii?