where do we use dyanamic call ?
and where do we use static call pls give any example pls ?
Answers were Sorted based on User's Feedback
Answer / shiva
if tere r n-subprograms in a program..we use dynamoc call
since no need of compiling main program everytime as sub
programs are modofied...
any way interms of proceesing static is only one best
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / kanchan
where speed is required we use Static call and if storage
is an inportant factor then we use dynamic call
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / 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 |
What is the difference between Structured COBOL Programming and Object Oriented COBOL programming?
0 Answers TryTechnicals Pvt Ltd,
What is file status 92?
How do you code Cobol to access a parameter that has been defined in JCL?
What are the functions like c or c++ in cobol?
What is wrong with the following data declaration? 01 W-DATE PIC X(6). 05 DD PIC 99. 05 MM PIC 99. 05 YY PIC 99. (a) Nothing is wrong. (b) Under W-DATE all level 05 items are having a PIC 99 but level 01 has PIC X(6). (c) PIC can't be specified for a group item. (d) DD, MM, and YY are invalid datanames.
COBOL Snippet: Tell where the control will when the below code execute IF (A=B) CONTINUE ELSE NEXT SENTENCE PERFORM <IMP-STMT> END-IF.
Hai friends why we need to read a file before re-write a record?
How much salary you are expecting? If they ask in an interview, what we have to tell?
6 Answers Tech Mahindra, Wipro,
What is the problem of ordered sequential files access?
Study the DATA DIVISION entries and the three PROCEDURE DIVISION entries given below: 01 END-OF-FILE-SWITCH PIC XXX. 88 NO-MORE-RECS VALUE "YES". 88 MORE-RECS VALUE "NO". (i) READ SAMPLE-FILE AT END MOVE "YES" TO NO-MORE-RECS. (ii) IF NO-MORE-RECS = "YES" GO TO LAST-PARA. (iii) IF NO-MORE-RECS GO TO LAST-PARA. Which are wrong? (a) (i) and (ii) (b) (ii) and (iii) (c) (i) and (iii) (d) all
Write the syntax of a two dimensional array?
if we display var1 then what will b displayed in below condition. 77 var1 pic s9(2) value -10. 77 var1 pic s9(2) value -11. " " " -12. " " " -13. -14 ... ... -19.