What are decleratives in COBOL ?
Answer / pavan
Declaratives provide special section that are executed when
an exceptional condition occurs. They must be grouped
together and coded at the beginning of procedure division
and the entire procedure division must be divided into
sections. The Declaratives start with a USE statement. The
entire group of declaratives is preceded by DECLARIVES and
followed by END DECLARITIVES in area A. The three types of
declaratives are Exception (when error occurs during file
handling), Debugging (to debug lines with 'D' coded in w-s
section) and Label (for EOF or beginning...) declaratives.
| Is This Answer Correct ? | 14 Yes | 3 No |
What is a scope terminator give example?
wht happens if we dnt give scope terminator ?
how you read control card into array?
What are subroutines ? and how do we pass data to the sub routines?
I have sequential file recl 1000 i want to add another 15 bytes to it. The record length should not change..How?
What is the utilization of copybook in cobol?
If A>B next sentence end-if display 1 display 2. display 3. If a>b, it will display only 3.(the next sentence, ie., after fullstop/period) ____________________________________ if a>b continue end-if display 1 display 2. display 3. If a>b, it Will display 1 2 3 (the next statement) ____________________________________ if a>b continue display 1 end-if display 2 display 3. display 4. If a>b, Will it display 2 3 4 (or) 1 2 3 4 ?
What is Pic 9v99 Indicates in COBOL?
0 Answers SwanSoft Technologies,
how to submit a jcl by cobol program. clear me with an example.
What is the difference between NEXT SENTENCE and CONTINUE?
is it possible to pass an SQL query inside a jcl which is inside a cobol program?
what is the diff b/w select stsmt and cursor ?