What are declaratives and what are their uses in cobol?
No Answer is Posted For this Question
Be the First to Post Answer
How to delete leading spaces/blank in COBOL ? Example:- 01 data-name-1 pic x(220) " English is a language". I would like to delete leading spaces.
how can you identify wheather the program is using search or search all in the cobol program?
COMPUTE X = A * B - C * D and COMPUTE X = (A * B) - (C * D) (a) Are not the same (b) Are same (c) Syntactically wrong (d) Will yield a run time error
how to refer the data field?
Is it possible to mutliply a comp variable with an comp-3 variable. Will there be any error if i do it?
in cobol perform stmt whether it first checks the condition or not
What is the utilization of copybook in cobol? Could we utilize a similar copybook?
perform I from 0 by 1 until I=5?How maney times it will executes
level number 77 is used to define a)group data b)elementary data c)redefine d)none
What is the default value(s) for an initialize? What keyword will allow for an override of the default?
Can we call a CICS program from a batch program or viceversa?If so, how?
If my file contains 100,000 records and job abended at 55,000th records processing then how can i restart job from that record onward by ignoring that record. I can not edit the file as file size is big and it is getting browse substituted?