How to remove 2 duplicate records and copy only one using job control language?
No Answer is Posted For this Question
Be the First to Post Answer
What are the different open modes available in cobol?
Explain the configuration section of a cobol program with examples of syntax.
What is COMP-1? COMP-2?
what are the working storage fields in BMS macro?
How can we increase the size of an existing PDS to include more no. of modules.
How can you display the SPOOL information ?
How to delete the records of a dataset through cobol programme?We should not use jcl utilitities like IDCAMS.
In COBOL CALL-CALLING,if a program A is calling 3 sub- programs, dynamically, then it is said sub-programs will always will always in Initial Mode. My question is : Do we need to code CANCEL or (IS INITIAL) for dynamically called sub-programs or it is the property of Dynamically called pgms so every time sub-pgms are called they will be in initial mode. ***This question is only Dynamic call****, Please reply. Thank you in advance.
given the following: 77 A PIC 9V9 VALUE 9.5 77 B PIC 9 VALUE 9. 77 C PIC V9 VALUE 0.8 77 D PIC 9 77 E PIC 9 77 F PIC 9V999 what are the contenta of D E nad F after the following statements are executed: COMPUTE F ROUNDED=A+C/B MULTIPLY A BY C GIVING E ADD B C A GIVING D ROUNDED a.F=9.589 E=8 D=1 b.F=9.589 E=8 D=9 c.F=9.589 E=7 D=9 d.F=9.589 E=7 D=1
Explain how to differentiate call by context by comparing it to other calls?
what is the difference between perform varying and perform until
Suppose i have a variable with s9(18)v99 comp3 . what is the size of variable . If s9(18) comp3 is 10 bytes . There should be some difference between two allocations ? Thanks krishna chaitanya