Asked by Syecia Johnson on Jun 14, 2024

verifed

Verified

To run a Java application program, a program called a(n) ____ loads the .class file into computer memory.

A) loader
B) interpreter
C) linker
D) assembler

Loader

A component in programming languages that loads classes or resources into memory for execution or use.

.Class File

A file format that contains compiled Java source code, ready to be executed by the Java Virtual Machine.

  • Absorb the rudimentary concepts and central aspects of Java programming.
verifed

Verified Answer

MR
Michelle RuvalcabaJun 15, 2024
Final Answer :
A
Explanation :
A loader is a program that loads the .class file of a Java application program into computer memory in order to run the program. The other options listed (interpreter, linker, assembler) are not directly involved in the loading of a Java program.