which one is better among static call and dynamic call?
Answers were Sorted based on User's Feedback
Answer / sab
Which one to use is depends on the situation.
If your code is small then its better to use static call as
it also speed up performance and it will be easy to track
the versions in small code.
If you are working with large number of subroutines, its
always good to use dynamic linking as it will save storage
space as well as will maintain versions of code easily.
Satisfied with answer...???
| Is This Answer Correct ? | 11 Yes | 0 No |
Answer / lu
static call is faster than dynamic call, but when you
modifies a called program, you have to recompile a called
program and calling program...
dynamic call , you don't need to recompile 2 programs
calling and called...it's independent..
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / ps
call in which the called program and the calling program are
compiled and link edited together to create one load module
is static call.
call in which the calling and called program are compiled
and link edited separatly to create two load module is
dynamic calling.In dynamic calling if someone is sharing we
have to wait
| Is This Answer Correct ? | 0 Yes | 0 No |
There are two flat files one having 10 records and other having 5 records. write a cobol pgm to find the duplicate records(matching records)from both files.
select TURE Statement(s) aboUt eject statemenet in cobol? a)The eject statememnt must be the only statement on the line b.It causes the program to edit abnormally c. eject statement can be written in either area A or area B d. specifies that the next source statement is to be printed at Top of the next page e.The EJECTstatement has no effect on the compilation of the source program itself
What kind of error is trapped by on size error option?
What is the difference between static call & Dynamic call?
what is the coding difference between COBOL and CICS.
i have a variable block which is used in my cobol program as input file having records of 4080 after compilation while runing the program im getiing file attribut mismatch and it is saying tht the record length of the file is 4084 can any one knw the answer how to reslove it ?
Can the OCCURS clause be at the 01 level?
hi is there any means of deletin a record from a ps usin cobol not using jcl?eg if i am reading a record and if some condition is matched tat particular record must be deletd fom the ps
Consider the following code: 77 A PIC 99V99 VALUE 55.35 77 B PIC 99V999 VALUE 32.754 ADD B TO A ON SIZE ERROR DISPLAY "ERROR!!!" What will be the result ? (a) A=88.10, B=32.754 (b) A=87.00 B=32.754 (c) A=87.10 B=32.754 (d) ERROR!!! will be DISPLAYed on the screen.
88 level entry is used for (a) data items in WORKING-STORAGE SECTION (b) items with RENAMES clause (c) condition-names (d) None of the above
what is sort? whis is internal & external sort ?when do u go for inter sort & external sort? tell about some sort utilites?
What do you understand by psb and acb?