what is bytecode ?explain in detail and watz the difference
between bytecode and machine code?
Answer Posted / ashwani
Actually java has the two main component.
1.Compiller.
2.Interpreter.
Thus byte codes are the codes which are generated by the
compiller by using our source code and this compilled code
or say the byte code is converted to the machine code or say
deployed by the interpreter.
| Is This Answer Correct ? | 29 Yes | 2 No |
Post New Answer View All Answers
Why is string builder not thread safe?
Can inner class be public in java?
How to solve the problem of generating the unique hash keys with hash function?
Explain the difference between extends thread vs implements runnable in java?
What is a pattern what is an anti pattern?
What are class members by default?
How do you read and print a string in java?
Define how can we find the actual size of an object on the heap?
What does split function do in java?
What is Java Annotations?
Can you write a java class that could be used both as an applet as well as an application?
What is string builder in java?
What is the purpose of garbage collection in java, and when is it used?
What is the difference between checked exception and unchecked exception?
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