In C we use only compiler. Why java uses both compiler and
interpreter? What is its significance?

Answers were Sorted based on User's Feedback



In C we use only compiler. Why java uses both compiler and interpreter? What is its significance?..

Answer / nidhi,himani

because in java, code is 1st converted into bytecode by the
compiler nd then it is converted into machine code by the
interpreter.

Is This Answer Correct ?    29 Yes 8 No

In C we use only compiler. Why java uses both compiler and interpreter? What is its significance?..

Answer / kuldeep sharma

Java is Platform Independent language it uses Virtual
System (JVM) in an existing operating system to run
programs.
The JVM itself is not Platform independent it is platform
dependent. but its functionality is same for all verison of
JVM for different OSs.

The Source Code of a Java Program is compiled to avail the
advantages of compiler like fast development, i mean all
the errors are checked and displayed by the compiler at once
(in 99.99% cases) to make the code error free.

An error free Java Code is converted into BYTECODE ;
directly understood by the JVM(for all OSs).

Now consider we compiled a.java >> a.class on linux, the
a.class is portable and runnable on other OS like Windows
because class files are fun by JVM but not by the OSs that
why we can say
Java is platform Independent.

Is This Answer Correct ?    12 Yes 4 No

In C we use only compiler. Why java uses both compiler and interpreter? What is its significance?..

Answer / rinky

If a source code is written in C,then after compilation platform dependent native code is generated which is specific to the platform and whenever if you want to execute the same source code into different platform you have to recompile the program which is wastage of time.
srcprogram-->compile-->platform1---->platform native code
srcprogram-->compile-->platform2-->platform2 native code
But coming to Java,when you compile your source code ,an intermediate code is generated(.class file)which is common to all the platforms and you can execute the .class file on any platform with the help of jvm to generate native code of the specific platform.

src prg(.javafile)-->compile(on any platform Xplatform)-->bytecode(.classfile)-->jvm(execute on)-->platform(p1 or p2...or pn)(to get native code)
that is what java's passion compile once run anywhere

Is This Answer Correct ?    7 Yes 3 No

In C we use only compiler. Why java uses both compiler and interpreter? What is its significance?..

Answer / dhana

in java code is complied by the complier at that time code
is convered into byte code after that JVM can convert the
byte code instructions into Machine code instructions.

Is This Answer Correct ?    10 Yes 8 No

In C we use only compiler. Why java uses both compiler and interpreter? What is its significance?..

Answer / ershad md sk

In C Lang Our program is directly Converted into
Executable code which is a Not portable..& it is Machine
Specific..in JAVA first .class file is Converted into .java
File And the Interpreter wil generate a intermediate Code
that is BYTE CODE..Which is Machine Independent...it has 0%
protability Issue............

Is This Answer Correct ?    3 Yes 9 No

Post New Answer

More Core Java Interview Questions

Explain about doubly linked list

0 Answers   Aditi Placement Service,


What code optimizations techniques you follow in general practice?

2 Answers   Accenture, TCS, Wipro,


What is a class object?

0 Answers  


What is the static variable?

0 Answers  


How do you sing an Applet ?

0 Answers  






define polymorphism in java

0 Answers  


Can you sort a string in java?

0 Answers  


Why stringbuilder is not thread safe in java?

0 Answers  


What is a consumer in java?

0 Answers  


What is the Concept of Encapsulation in OOPS

0 Answers   HCL,


What are memory tables?

0 Answers   Aspiring Minds,


This abstract class is correct ? abstract class A { public abstract void Disp(); public abstract void B() { } public absract virtual C() { } }

0 Answers   HCL,


Categories