What is the difference between interpreter and compiling ?
Answers were Sorted based on User's Feedback
Answer / satish chaurasia
interpreter : a program written in source language can be
understood and executed by the CPU line by line.As the
first line is encountered by the interpreter, it is
translated and executed. same next line executed.
Whereas
A compiler translates a complete source program into
machine code. means it converts the .java file into .class
file.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / guest
Interpreter is used to execute the program after the
completion of a compilation process.
Compiler compiles the program that is it converts the java
file into class file.
| Is This Answer Correct ? | 0 Yes | 3 No |
Which is bigger float or double?
what is the JNDI?
How can a gui component handle its own events in java programming?
Differentiate between static and non-static methods in java.
What is the use of conditional statement?
What is derived datatype?
How will you calculate the depth of a binary tree if the tree contains 15 nodes?
What do you understand by weak reference?
what is use of session tracking ?with example?
What is the map interface in java programming?
How do you sort in ascending order in java?
Is cout buffered?