Hi , I am posting some questons which are asked at
interview. These may help u for ur interview...
what is static and dynamic call?
Answers were Sorted based on User's Feedback
Answer / suman kumar
STATIC CALL: main program object program,sub program object
program loaded in one library
Dynamic call: main program object program, sub program
object program are loaded in different load library.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / nagaraju domala
Static Call : System will establish logical links between
Main and Sub-programs at the time of Compilation where it
creates a unit called RUN-UNIT. When Main program is
invoked automatically all sub programs also loaded into
memory.
Dynamic Call : System will establish links between Main
program and sub programs at the time of execution(Run Time).
We use Different Call depents upon the application
requirement.
| Is This Answer Correct ? | 4 Yes | 0 No |
COMP field occupy ?
How to fetch 1000 error records from VSAM file(Eg: 1000000 records present) while getting SOC7 abend ?
What is the usage of comp fields in cobol?
Explain call by context by comparing it to other calls.
I have 100 records in a file.. i want to sort the records from 5 to 5o... give the syntax...
)If there are 10 steps in GDG, if I want to refer the step2 after step5 . what should I do?
I have to write to a outfile where the number of records in that file should be the header of that file using IMS.. can anyone help me in this issue
What is the difference between CALL BY VALUE and CALL BY CONTENT?
how do you reference the ksds vsam file formats from cobol programs
OCCURS clause is used in the DATA DIVISION on data names at (a) 01 level (b) 77 level (c) 88 level (d) any level from 02 to 49
how to display comp3 variables reply soon ?
what if any ,is the syntex error in the following piece of code 01 B PIC A(7) 02 C PIC 9(4) ........ IF(B NUMERIC) ADD 10 TO C a.the condition in the if statement is wrong b.noting is wrong c.because C is initialised.ADD 10 TO C is wrong d.both B and C shoud have same size.