where do we use dyanamic call ?
and where do we use static call pls give any example pls ?
Answer Posted / bhaskar
dynamic call is noting but link edit of object code done at
the time of excution.
before excution is called as static.
static used at gaving value in value clause
ex.01 a pic 9(2) value 19.
dynamic is accept clause
accepted in pd.
| Is This Answer Correct ? | 0 Yes | 6 No |
Post New Answer View All Answers
Which division and paragraphs are mandatory for a COBOL program?
Name the sections present in data division.
What are the cobol coding sheets?
How to get the last record in vsam file in cluster? And how can you get the kids file records into your cobol program?
Name the divisions, which are available in a cobol program?
Which Search verb is equivalent to PERFORM…VARYING?
INREC AND OUTREC? HOW TO SPLIT 5K RECORDS TO DIFFERENT FILES IN A FILE IN COBOL? RESTART IN COBOL-DB2? ISOLATION LEVELS?
Explain the configuration section of a cobol program with examples of syntax.
What is comp-1 and comp-2?
what happens if parmparameter passes zero bytes to the program
What is the difference between a binary search and a sequential search? What are the pertinent cobol commands?
What is rmode(24)
What is the LINKAGE SECTION used in COBOL?
I have File 1 occurs 5 times with Employee-ID,Employee-Name,Employee-Dept (EEE and MECH). I have File 2 occurs 10 times with Employee-ID,Employee-Name,Employee-Dept (EEE,CIVIL,CHEMICAL and MECH). In FIle 1 and FIle 2 , for matching Employee-DEPT (Only MECH) , we need to move entire records from file1 to file 2. We should not use 2D array. Your help is needed here.
Write a program that uses move corresponding.