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 |
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 the meaning of pic 9(09)v99-
how do you reference the variable block file formats from cobol programs
What are the differences between COBOL and COBOL II?
Mention the guidelines to write a structured cobol program?
i need a program by giving input as a abcd in any randem order but i need a output as 1234 related to abcd. i.e,. a for 1,b=2,c.....etc..
How to replace the GOTO statement in COBOL without changing the structure of program. e.g. consider following code... I.D. E.D. D.D. P.D. compute C = A + B. GOTO para 100-display. compute D = C - D. GOTO 200-display. some other logic...... ........ GOTO 300-para. ...... ...... GOTO 400-para. Now I want to replacce all GOTO statements without changing the structure and otput of program.
i made it to stage 3 of an interview process wednessday they will quiz my knowledge again face to face for an analyst role recruiter said it will be based on Business requirements system is cobol and good ideas what they might ask etc
Consider the following COBOL entries: 05 X PIC 99 VALUE 10. SUBTRACT 20 FROM X. The resultant value of X wil be
can u plz expain me how to declare dynamic array? what is the meaning of depending on clause in dynamic array?
How can i write a comp-3 variable into a sequential file should i declara the field in the file description as comp- 3?
how to access vsam files in cobol and how to differentiate that this is ESDS file