In C we use only compiler. Why java uses both compiler and
interpreter? What is its significance?
Answer Posted / 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 |
Post New Answer View All Answers
what is interface in java? Explain
What are the advantages of exception handling?
What is the final class modifier?
Explain the difference between static and dynamic binding in java?
In which order the iterator iterates over collection?
How we can generate random numbers in java?
What is difference between local variable and global variable?
What is a nested list?
why are there separate wait and sleep methods? : Java thread
When throws keyword is used?
What are the six ways to use this keyword?
When do you call copy constructor?
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
How to find the index of the largest number in an arraylist java?
What are the escape sequences in java?