What is the difference between interpreter and compiling ?
Answer Posted / 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 |
Post New Answer View All Answers
Write a java program to find the route that connects between Red and Green Cells. General Rules for traversal 1. You can traverse from one cell to another vertically, horizontally or diagonally. 2. You cannot traverse through Black cells. 3. There should be only one Red and Green cell and at least one of each should be present. Otherwise the array is invalid. 4. You cannot revisit a cell that you have already traversed. 5. The maze need not be in the same as given in the above example
What is data member in java?
Why does java not support operator overloading?
What is the difference between throw and throws in java?
What is a method vs function?
Can an interface extend a class?
how to prepare for IT Officers Interview in Banks
What isan abstract class and when do you use it?
How does hashset work in java?
What is the use of using enum to declare a constant?
What is %02d?
What do you meant by active and passive objects?
What are the major drawbacks of external iteration?
What is lossy conversion in java?
What is an 8 bit word?