What is the default value(s) for an initialize? What keyword will allow for an override of the default?
No Answer is Posted For this Question
Be the First to Post Answer
If we put three reads in COBOL in the same para one after the other, to read a PS file,will it read the same record thrice or it will read three records sequentially? For example : Input File 01 02 03 Para 900 Read infile Display Infile rec Read infile Display infile rec Read infile Display infile rec. What will be the output?
input:- A 10 20 30 40 B 5 7 10 14 C 8 12 14 16.... output:- A = 100,B=36,C=50. Here spaces are considered between numbers. When we give input as above, the numbers should be added n displayed.So please help me out.
What is the default value(s) for an initialize? What keyword will allow for an override of the default?
What is inspect in cobol ?
What is the default value(s) for an initialize and what keyword allows for an override of the default?
how do you reference the fixed unblock file formats from cobol programs
i want to use only first 100 records from a file.plz tell me how to write JCL for this(for read,copy,write operations).plz give me details of all posible JCL utilities?
consider the following piece of code 01 GROUP-ITEM 05 AMOUNT-1 PIC 99V9 USAGE COMP VALUE 50 05 AMOUNT-2 PIC 9(4)V99 USAGE COMP MOVE ZERO TO GROUP-ITEM ADD 50 TO AMOUNT-1 what will be the content of AMOUNT-1? a.50 b.100 c.0 d.unpredictable
Explain about Redefines cluse?
how do you reference the variable block file formats from cobol programs
Can JUSTIFIED be used for all the data types?
How can we find that module can be called – whether DYNAMICALLY or STATICALLY?