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 |
how to refer the data field?
Please let me know how the Eject verb works for page break.. I want to know the code, how it is used.
What are the ways you can generate a copybook?
what happens of we dont give time stamp in precompilation process
have in 100 records in a file i want to move only matched records to one output_file1 and nonmathed records are moved to another output_file2 ... any one can provide logic code
which is Best IBM Mainframe Training and Placement Institute in Ameerpet Hyderabad
What is 66 level number and where it is used in real time by software developers?
2 Answers ITC Indian Tobacco Company, TCS,
how to display date in reverse order if the pic clause of the is numeric suppose date is 09032010 ==> need to print in 20100309 (pic clause is numeric)
How to delete leading spaces/blank in COBOL ? Example:- 01 data-name-1 pic x(220) " English is a language". I would like to delete leading spaces.
how you will define variables length in cobol.
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?
Hi, My interviewer ask A calls B and C calls B, a and b are static c and b are dynamic.what happens if they compile and execute at same time.