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 |
What is the basic difference between string and stringbuffer object?
What is a constructor, constructor overloading in java?
Explain the importance of thread scheduler in java?
What is the difference between serialization and deserialization?
Can we create a class inside a class in java?
What are the skills required for core java?
Difference between an argument and a parameter?
10 Answers Accounting, HCL, IBM, Quinnox,
Given a singly linked list, find the middle of the list in a single traversal without using temporary variable.
Accenture NJ mostly ask question on Collection like 1)How to sort Objcts and how treeset sort them 2)Explain mechanism of Hashcode finding in Java 3)Name some of the Sorted collection.
Is string serializable in java?
What is the exact difference in between Unicast and Multicast object ?
Is it possible to write static method in abstract class? justyfy your answer?