for an INITIALIZE and what keyword allows for an override
of the default.
Answers were Sorted based on User's Feedback
Answer / shinoy sansilavose
I think it is REDEFINE clause ........ not sure
Is This Answer Correct ? | 1 Yes | 3 No |
What are different data types in cobol?
What is Pic 9v99 Indicates in COBOL?
0 Answers SwanSoft Technologies,
The following entries appear in the WORKING-STORAGE SECTION: 01 DATE-TODAY. 05 YY PIC XX VALUE "90". 05 MM PIC XX VALUE "12". 05 DD PIC XX VALUE :31". 01 DATE-EDIT PIC XX/XX/XX. MOVE DATE-TODAY TO DATE-EDIT. (a) 901231 (b) 90/12/31 (c) 31/12/90 (d) 311290
Move Zeroes to I move 5 to j perform para1 varying I from 10 by -2 until I = 0 display j. para1. Add 5 to j. What’ll be the value after execution of display stmt. A) 35 B) 40 C) 30 D) 25 please explain how?
How do you define a sort file in JCL that runs the COBOL program?
) How do you access the migrate the data from production region to development region
how to submit a jcl by cobol program. clear me with an example.
01 var1 pic x(10) 01 var2 redefines var1 pic 9(10). then in procedure division move 'abcde' to var1 then waht is the value of var1 and var2
What is the purpose of Identification Division?
Why IBM?
There is a variable with value 19446. Requirement is to convert it to 194.46. I tried it by doing divide by 100 and my receiving field data type is 9(03)v99. But the output is 194. I am not getting the decimal value. Could anyone pls let me know how to get this done?
plz any one tell clearly the justify right clause?