Explain call by context by comparing it to other calls.
Answer / mahathiaz
The parameters passed in a call by context are protected
from modification by the called program. In a normal call
they are able to be modified
| Is This Answer Correct ? | 2 Yes | 4 No |
how will u pass dadta to cobol+db2 program...?
study the following 01 A PIC 99V0 VALUE 5 01 B PIC 9V9 VALUE 6 01 C PIC 99V9 VALUE 2.5 01 D PIC 99 VALUE 3 COMPUTE A ROUNDED B C = A+B*C/D ON SIZE ERROR PERFORM PRINT-ERROR the comments of A.B.C after execution of the above statement are a.A=10 B=0 C=10 b.A=10 B=9.9 C=9.9 c.A=10 B=0 C=9.9 d.A=10 B=6 C=10
Can we dynamically increase the size of occurs clause? i.e In case I an not sure of the size of array and want to increase the size at run time.If yes , how?
What is inspect in cobol ?
Why we need to use redefine clause when we can define the variable seperately... what is actual need....
TYPES OF SORTINGS. which is more prefarable.
if a dataset is already created with fixed length but after that i want to change fixed length to variable length then how is it possible
what is the result of the following? DIVIDE A INTO B GIVING C. a.C=A/B b.the reminder of B/A is stored in C c.C=B/A d.the reminder of A/B is stored in C
How to resolve the soc4 & soc7 other than following answers. Soc4 can resolved using mispleed dd name and dd name is not matching with file and soc7 check the sysdump and copy the offest address then correct it in the program.
10 Answers ADP, Amdocs, Cap Gemini, Keane India Ltd, Super Value, TCS,
How do define dynamic array in cobol.
01 A pic 9(100) find record length of it
Can we change the password using ALTER? anyone tried and changed?