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
what is the coding difference between COBOL and CICS.
Explain how to differentiate call by context by comparing it to other calls?
How can you submit a job from COBOL programs?
What rules are followed by the search verb.
how will u pass dadta to cobol+db2 program...?
how many bytes does s9(7)COMP-3 field occupies?
We have 3 programms A,B,C.In the middle of the program A the controls goes to program B and in the middle of the program B control wants to go program C,after completion of program C again control comes to program B and again after completion of program B control comes to program A.How the process will takes and what are the controls we use for that process.If it is possible anybody of you explain with example?
01 var1 pic s9(9)v99. 01 var2 pic x(30). procedure division. move 12345.99 to var1. move12345.99 to var2. display var1. display var2. what is the output?
If there are two copybooks which have same variables and we are using both the copybooks in our program. will there be an error and if i move values to the variable which copybook varibales gets the values i move in.
can we declare s9(9)v9(9) in cobol ? if yes how many bytes it will occupy ?(urgent plz answer it)
01 x pic s9(8) comp. How will the following value be internally allocated '18787'
what do you mean by copybook? and what is the difference between the copybook which we are using in working storage and procedure division.