The document discusses different types of loaders:
1) "Compile and go" loader directly places assembled machine code into memory without producing object files, wasting memory and time.
2) General loader produces object files from source then loads them, avoiding retranslation and wasting less memory than "compile and go".
3) Absolute loader uses relocated object files that specify load addresses, making loading simple but requiring the programmer to manually perform linking.