What term refers to the process of converting human-readable source code into an intermediate bytecode format executed by a virtual machine (e.g., Java JVM)?
AInterpretation
BBytecode Compilation
CLinking
DAssembly
Explanation
Java compiles source code (.java) into platform-independent Bytecode (.class), which is then interpreted or JIT-compiled by the Java Virtual Machine (JVM) on target platforms.
Exam Relevance
- Topic: Programming Concepts
- Subtopic: Java & Language Runtime Environment

No Comments