About 50 results
Open links in new tab
  1. Is Java a Compiled or an Interpreted programming language

    Aug 25, 2009 · Java is a compiled programming language, but rather than compile straight to executable machine code, it compiles to an intermediate binary form called JVM byte code.

  2. Why Java is both compiled and interpreted language when the JIT also ...

    Jan 2, 2014 · 14 I read that, a java source code is compiled into 'bytecode' then it is 'Compiled' again by JIT into 'machine code'. That is, the source code is first compiled into a platform independent …

  3. Java compiler/interpreter - Stack Overflow

    Jul 5, 2010 · Java is compiled to an intermediate "byte code" at compilation time. This is in contrast to a language like C that is compiled to machine language at compilation time. The Java byte code …

  4. java - What's the difference between compiled and interpreted …

    Mar 8, 2016 · 58 Java and JavaScript are a fairly bad example to demonstrate this difference, because both are interpreted languages. Java (interpreted) and C (or C++) (compiled) might have been a …

  5. Why is java both compiled and interpreted - Stack Overflow

    Sep 5, 2012 · Closed 13 years ago. Possible Duplicate: Is Java a Compiled or an interpreted programming language? Why is Java both compiled and interpreted language? We first compiles the …

  6. Compiled vs. Interpreted Languages - Stack Overflow

    Jul 16, 2010 · Compiled language: Entire program is translated to machine code at once, then the machine code is run by the CPU. Interpreted language: Program is read line-by-line and as soon as …

  7. In which language are the Java compiler and JVM written?

    Aug 3, 2009 · The Java compiler is written as a Java program and then compiled with the Java compiler written in C (the first Java compiler). Thus we can use the newly compiled Java compiler (written in …

  8. Is Python interpreted, or compiled, or both? - Stack Overflow

    A compiled language is a high-level language whose code is first converted to machine-code by a compiler (a program which converts the high-level language to machine code) and then executed by …

  9. compilation - Java - Interpreted or compiled? - Stack Overflow

    Closed 11 years ago. I would like to understand if Java programs are Interpreted or compiled, and why? I (think I) know the definitions of compilation and intrepertations: Compilation - Translates the source …

  10. Is Javascript compiled or an interpreted language? [closed]

    For me personally, I am somewhat cautious of the idea of calling a language interpreted or compiled. It's an implementation decision, not part of the language specification. If you want to talk about compiled …