QuestionQ18

701.1 Modern Software Development

Which of the following types of linking can a binary program use for its libraries?

Choose two
  • A Loose linking
  • B Static linking
  • C Forced linking
  • D Tight linking
  • E Dynamic linking
Explanation

Static linking incorporates library object code directly into the application binary. Dynamic linking uses a separate shared library and resolves its exported functions when the program is loaded or at run time.

Learn more

Community Discussion

No comments yet. Be the first to start the discussion!