InterviewSolution
Saved Bookmarks
| 1. |
The process of assigning load addresses to the various parts of the program and adjusting the code and data in the program to reflect the assigned addresses is called?(a) Assembly(b) Parsing(c) Relocation(d) Symbol resolute |
|
Answer» Correct option is (c) Relocation To explain: Relocation is the process of replacing symbolic references or names of libraries with actual usable addresses in memory before running a program. Linker performs it during compilation. |
|