In loading programs into memory, what is the difference
between load-time dynamic linking and run-time dynamic
linking?
Answers were Sorted based on User's Feedback
Answer / guest
For load-time dynamic linking: Load module to be loaded is
read into memory. Any reference to a target external module
causes that module to be loaded and the references are
updated to a relative address from the start base address
of the application module.
With run-time dynamic loading: Some of the linking is
postponed until actual reference during execution. Then the
correct module is loaded and linked.
Is This Answer Correct ? | 6 Yes | 3 No |
Answer / raj kumar
Load-time dynamic linking:
(1)linker tells the system that load the DLL at load time.
(2)When you use load-time dynamic linking, you need an
import library file(.lib).
Run-time dynamic linking:
(1)linker tells the system that load the DLL at run time.
(2)When you use run-time dynamic linking, you do not need an
import library file.
Is This Answer Correct ? | 3 Yes | 2 No |
One starts counting from 0 to max and the other stars from max to 0. Which one executes fast.
What are types of os?
What is the difference between logical address space and physical address space?
Does overheating cause blue screen?
What is the use of chkdsk f?
What are interrupts?
What is memory-management unit (mmu)?
What is the difference between process and program?
What is asynchronous task?
What is the real-time system?
What is the disadvantage of microprocessor?
5 Answers College School Exams Tests, TCS, Team Computers,
What are placement and replacement algorithms in the context of memory management?