Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What is the difference between static call & Dynamic call ?

Answers were Sorted based on User's Feedback



What is the difference between static call & Dynamic call ?..

Answer / shankar v

when you know the program name to be called, you go for
STATIC call saying,
CALL 'PROGA'

when you dont know the program upfront while coding the
program you go for DYNAMIC call,
CALL WS_PROG (this is a working storage variable for which
the value will be passed to it during the execution of the
program.

And also a major difference between these 2 is the DYNAM
(FOR DYNAMIC CALL )& NODYNAM (FOR STATIC CALL) option on
the jcl. This is the factor which decides whether a call is
dynamic or static.

Is This Answer Correct ?    9 Yes 5 No

What is the difference between static call & Dynamic call ?..

Answer / muttiah

PFB the difference between static and dynamic call.

Static Call: We can find whether a call is static or
dynamic in 2 ways. If the call statement is like this

call 'Progrname' ----> Static call
Call ws-variable ----> Dynamic call

By looking at the compiler options.
If Dynam -- Dynamic call, Nodynam ---> Static call..

No Dynam is default.

In Static call the load module of the sub program resides
in the same memory where the Main program resides.

Whereas in case of Dynamic call. The load module will be
called into memory only during run time. As a consequence.
The Static call is much faster..Dynamic call is slower.

Memory will be saved in case of dynamic call..

Static call is used for small sub programs.
Dynamic call is used for large sub programs.

Choosing the type of call either static or dynamic depends
on your requirement.

Is This Answer Correct ?    3 Yes 0 No

What is the difference between static call & Dynamic call ?..

Answer / guest

In the case of Static call, the called program is a stand
along program, it is an executable program . During run time
we can call it in our called program. As about Dynamic call,
the called program is not an executable program it can
executed thru the called program

Is This Answer Correct ?    2 Yes 8 No

Post New Answer

More JCL Interview Questions

A PROC has five steps. Step 3 has a condition code. How can you override/nullify this condition code?

5 Answers   IBM, Wipro,


What do you understand by the term job time – out and how can you overcome that?

0 Answers  


what is use of space parameter in dd statement?

0 Answers   IBM,


if we are specifing joblib as well as steplib in job then at the time of execution how the process will complete

4 Answers  


How can the submitting users racf authority be overridden in a job stream?

0 Answers  


How do you submit a job for execution?

0 Answers  


What parameters can be used to limit the number of records written to a sysout dataset?

1 Answers  


How do you submit JCL via a Cobol program?

2 Answers   Cap Gemini,


How to empty the records in jcl

1 Answers  


How to view the hexa decimal value thru file aid if copy book is not present for that particular data

1 Answers  


Suppose I have a file with three fields with data in the following format 1. empid - S9(4) COMP 2. empname - X(20) 3. empsal - S9(5)V(2) COMP-3 If I view this file, it will not be in a readable format. How to display the empid and empsal fields in a readable format without using COBOL program? What kind of SORT card will have to be coded?

4 Answers  


what type of version is we r using now real time in all modules(cobol, jcl, cics, db2, vsam)?

1 Answers   Accenture,


Categories