644 views

1 Answer

Best answer
2 votes
2 votes
During compile time mainly two functions are performed :

1. Compiling the code and converting to assembly code.

2. and then converting assembly code to Relocatable code.

During the link time :

1. linker links all the modules of program and gives a single module which is still a relocatable code.

During load time :

1. the loader covert the relocatable addresses of the code to absolute address.

During Run Time :

1. Dynamic linking of shared library is done.
selected by

Related questions

0 votes
0 votes
0 answers
1
SSR17 asked Feb 8
185 views
we have 8 pages (each side 32B) to store in physical memory of 2^32 bits how many bits are required to identify each page , according to me 3 bits are required but that i...