what is bytecode? watz the difference between machine code
and bytecode?
Answer Posted / aman mittal
In JAVA, when source code(.txt file ) is compiled it turns
into byte code(.class file), actually this byte code is
something assembly instructions in JVM assembly and this
byte code is platform independent(as we can run our .class
code on any o/s, using specified JRE for that o/s.).
A byte code compiled by a compiler can run on any o/s like
windows, linux, unix, mac etc...
Machine code refers to a data that can be executed by a
specific computer having particular processor & o/s.(JRE
execute this data on specific o/s.)
JRE is provide by different o/s vendors.
Aman Mittal
09457267173
| Is This Answer Correct ? | 10 Yes | 4 No |
Post New Answer View All Answers
What is gui programming?
Is there any difference between nested classes and inner classes?
What is a java predicate?
What is a data structure java?
Does it matter in what order catch statements for filenotfoundexception and ioexception are written?
What do you mean by byte code?
What does I ++ mean?
What does string mean in java?
Why is core java important?
what is deadlock? : Java thread
What is hashmap in java?
What is the difference between static method and instance method in Java?
What is a generic code?
Is empty set an element of empty set?
How to optimize the javac output?