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 filterstreams?
What is a variable and constant?
How can we create an immutable class in java?
Why set do not allow duplicates in java?
Explain where variables are created in memory?
Why method overriding is used?
What is var keyword ?
When arithmeticexception is thrown?
Difference between final and effectively final ?
What is static import?
what is the purpose of "virtual"?
How will you serialize a singleton class without violating singleton pattern?
What is hashmap in java?
What's the difference between comparison done by equals method and == operator?
Where we write javascript code in html page?