About 104,000 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. 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 …

  3. 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 …

  4. 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 …

  5. 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 …

  6. 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 …

  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. JavaScript is compiled or interpreted language or both?

    Jan 13, 2021 · JavaScript (JS) is a lightweight, interpreted, or just-in-time compiled programming language Basically since JS is used in multiple environments it can be either one or the other.

  9. Why is JavaScript called a "scripting language"? [closed]

    As the title says, I want to know the exact reason why JavaScript is called a "scripting language"? My understanding is it's because JavaScript is only interpreted by the browser (and not compiled).

  10. 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 …