in Compiler Design retagged by
659 views
1 vote
1 vote

Match the following

List 1

  1. Link time
  2. load time
  3. compile time
  4. Run time

List 2

     A. Resolving references

     B. Relocation

     C. Token Recognition

     D. Activation record

in Compiler Design retagged by
by
659 views

2 Answers

1 vote
1 vote

1. Link Time:        References/Symbol Resolution

2. Load Time:        Relocation more specifically Absolute code Generation

3. Compile Time: Token Analysis in Lexical Analysis

4. Run Time:          Activation record (Procedure are pushed into stack and sub procedure are taken into Consideration it all done at Run Time)

Ref: Runtime Environments

edited by
0 votes
0 votes
Linker do main task symbol resolution.conversion of relocatable code to relocatable addresses .

Loader perform program loading and also relocation.

Compile time =》Token recognition

Allocation of activation records in runtime environment.