The software in computer that transfers the object program from secondary memory to the main memory is called

The software in computer that transfers the object program from secondary memory to the main memory is called Correct Answer Loader

In computer systems, a loader is the part of an operating system that is responsible for loading programs and libraries.

It is one of the essential stages in the process of starting a program, as it places programs into memory and prepares them for execution.

Related Questions

What is the difference between the following 2 C codes?
#include  //Program 1int main(){ int d, a = 1, b = 2; d = a++ + ++b; printf("%d %d %d", d, a, b);}

#include  //Program 2int main(){ int d, a = 1, b = 2; d = a++ +++b; printf("%d %d %d", d, a, b);}