What are differences between Static Call and Dynamic Call?
Answer Posted / ananta bajpai
1.Static call is that in which programe is directly called
by its name. where as Dynamic call is that in which
programe called by a variable name.e.g programe name is
moved into a variable and that variable is used in call
statemant like
working-storage section.
01 var pic x(4) value 'call1'.
.
.
procedure division.
call var.......
Note ; programe name must be given in working-storage
section.
2.static call linked at complie time where as dynamic call
at run time
3.in static call called programe never come into initiall
state after one time run.There is alway requried to complie
every time for new task .Instead of this dyanmic call call
programe always in initiall state
| Is This Answer Correct ? | 12 Yes | 3 No |
Post New Answer View All Answers
Write a program to enter and display the names of students in a class using the occurs clause.
What are various search techniques in cobol? Explain.
Explain the configuration section of a cobol program with examples of syntax.
Can a Search can be done on a table with or without Index?
Can we change the password using ALTER? anyone tried and changed?
How you can characterize tables in cobol?
I need to compare 3 variables(dates) and do some processing based on the earliest date. There could be more then 1 date record in any of the 3 fields. What is the best way to code this?
Why occurs cannot be used in 01 level in COBOL?
How do get the result of your program directly on your pc?
What is the difference between a binary search and a sequential search? What are the pertinent cobol commands?
How to get the last record in vsam file in cluster? And how can you get the ksds file records into cobol program?
what is the use of outrecord?
IF I mention stop run in CICS what happens?
How can you get the ksds file records into your cobol program?
Differentiate between structured cobol programming and object-oriented cobol programming.