0
3.1kviews
State the function of simulator, linker compiler and debugger.
1 Answer
0
262views

Simulator:-

  1. It is the software that functions like the hardware without actual hardware.

  2. Allows simulation of peripherals and I/O devices.

  3. Allows checking of software before the hardware is available to the user.

Linker :-

  1. Linker is used to link with the library and generation of executable file.

  2. It is used for relocation process.

  3. It is done during compilation also it can be done at run time by a relocating loader.

  4. It is a program that takes one or more objects generated by compiler and combines them into a single executable program.

Compiler :-

  1. It is program which converts high level language program to machine language.

  2. It also indicates the syntax errors in the program if any.

  3. It generates object file corresponding to the target device.

Debugger :-

  1. Debugger is used to find the error and it keeps the control over the system environment and ability to test or follow the execution of the program.

  2. Debugger allows the user to load program in to the system memory, executes the program by single stepping and detect logical errors in the program.

Please log in to add an answer.