Question: Explain the difference between static and dynamic calls in COBOL.Answer: Static calls are resolved at compile-time, while dynamic calls are resolved at run-time. CALL and PERFORM are examples of static calls, while CALL 'subprogram' USING ... is a dynamic call. |
Is it helpful?
Yes
No
Most helpful rated by users: