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 |
hw to create 3 dimensional array & hw to access it?
What is an in line PERFORM? When would you use it? Anything else to say about it?
Explain the configuration section of a cobol program with examples of syntax.
What are ISOLATION LEVELS? Where do we need to specify them?
what are the limitations of Inline Perform?
What is rmode(any) ?
I have a table with 3 dimensions like this : 01 ws-table 04 ws-page occurs 3 08 ws-column occurs 2. 12 ws-record occurs 20 pic x(40). How to code with PERFORM varying with 3 dimension...I forgot..
What the difference is between continue and next sentence?
what are the paramater we cannot use in procedure?how many instream we can write in single jcl?can we call instream to catalog and ctalog to instream?
subscript and index r not coded in u r application program what will happen?
how do you reference the fixed unblock file formats from cobol programs
We are using the searching a table which is indexed, once the key is found, how can we get the occurance at which the key was found.