________ is a standard machine language into which Java source is compiled.
2023
________ is a standard machine language into which Java source is compiled.
- A.
Interpreter
- B.
Object Oriented
- C.
Bytecode
- D.
Assembly
- E.
Question not attempted
Attempted by 149 students.
Show answer & explanation
Correct answer: C
In Java, source code (.java) is compiled by the Java Compiler (javac) into Bytecode (.class file).
This bytecode is platform-independent and runs on the Java Virtual Machine.
Flow:
Java Source Code (.java) → Compiler → Bytecode (.class) → JVM executes