Multiple choice technology programming languages

Java is a

  1. Iterpreted Language

  2. Compiled Language

  3. Byte Code Language

  4. None of these

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

Java is neither purely interpreted nor purely compiled - it's a hybrid language. Java source code is compiled to bytecode, which is then either interpreted by the JVM or JIT-compiled to native code at runtime. 'Byte Code Language' is not a standard programming language classification.