answersLogoWhite

0

A loader loads software onto a computer. A linker points to software so other software knows where to find it.

User Avatar

Wiki User

11y ago

What else can I help you with?

Continue Learning about Computer Science

What are the five types of system programs?

compiler linker loader macroprocessor assembler


What is full form of LILO in COMPUTER?

LILO (LInux LOader) is a boot loader for LinuxandLast in, last out, or first in, first out in queues.


What is an absolute loader?

An absolute loader is the simplest type of loader scheme that fits the general model of loaders. The assembler produces the output in the same way as in the "complier and go loader" . The assembler outputs the machine language translation of the source program.Disadvantage:The programmer has to specify the address to the assembler that where the program is to be loaded.It is very difficult to realocate in case of multiple subroutine.Programmer has to remember the address of each subroutine and use that absolute address explicitly in other subroutines to perform subroutine linkage


What is the relationship between a logarithmic function and its corresponding graph in terms of the log n graph?

The relationship between a logarithmic function and its graph is that the graph of a logarithmic function is the inverse of an exponential function. This means that the logarithmic function "undoes" the exponential function, and the graph of the logarithmic function reflects this inverse relationship.


How to find the roots of a function in MATLAB?

To find the roots of a function in MATLAB, you can use the "roots" function for polynomials or the "fzero" function for general functions. The "roots" function calculates the roots of a polynomial, while the "fzero" function finds the root of a general function by iteratively narrowing down the root within a specified interval.

Related Questions

What will be executed first loader or linker?

loader


What is direct linking loader in?

linker


Components of software?

linker ,loader,assembler


What are types of system programs?

compiler linker loader macroprocessor assembler


What are the types of system program?

compiler linker loader macroprocessor assembler


What are the five types of system?

compiler linker loader macroprocessor assembler


What is 8051 loader?

The Loader is a program that moves the executable file produced by linker from the secondary storage device to memory for execution


What are the five types of system programs?

compiler linker loader macroprocessor assembler


Linker and loader in c language?

There is no such thing in the C language, but it is true that operating systems have a component called loader which loads binary program-files (whose source may be written in C language) into the memory and prepares them to the execution.


Why static library are attached to w program via the linker while shared libraries are attached by the loader?

Because static libraries are, well, STATIC. They are LINKed STATICally to the program by the LINKer. Shared libraries are SHARED. They are linked by the LOADer when LOADed to SHARED libraries in system memory.


What is object linker?

In computer science, a linker or link editor is a program that takes one or more objects generated by a compiler and combines them into a single executable program.http://en.wikipedia.org/wiki/LinkerThis is a response to the question, "What is object linker?". The appropriate question would have been, "What is a linker or link editor in the field of Computer Science and Software Engineering?". Note that a linker is called a loader when it refers to a run-time process. Linkers refer to compile-time processes.


What is a short note on linking error in c plus plus?

A linking error usually denotes some inconsistency between a function's declaration and its definition, typically meaning there is no matching definition for the declared function (an undefined function). Normally this is only a problem if the function is actually called since unused functions are of no concern to the linker, whether defined or not. Linker errors may not relate to errors within your code. An undefined function could simply be the result of not providing the linker with the full path to a function that is implemented in a library. The linker also needs access to all the object files generated by the compiler. If the linker options are correct then the problem is most likely that you've failed to define a declared function.