what is bytecode? watz the difference between machine code
and bytecode?
Answer Posted / lucky
Byte code:
----------
Byte code in java is .class file. when the java program is compiled we will get this .class file.This is machine dependent code.
Machine code:
-------------
Java interpreter converts the byte code into machine code which is understandable by the operating system's cpu.Machine code will be in the form of 0's and 1's.
Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
What are the differences between Java 1.0 and Java 2.0?
What is thread synchronization in java?
What is a nested class?
Explain the term virtual machine?
Where pragma is used?
What does singleton mean in java?
Write down program for following scenario. Use java coding standard. You have array list with some words in it..we will call it as dictionary….and you have a arbitrary string containing some chars in it. You have to go through each word of dictionary and find out if that word can be constructed with the help of chars from arbitrary string given. If you find the word print it else print none.
What is a 16 bit word?
What is the difference between heap memory and stack memory?
What is an example of procedure?
What does g mean in regex?
What is the size of boolean variable?
What is the use of using enum to declare a constant?
What are thread safe functions?
What are the basic interfaces of java collections framework?