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 is a parent class in java?
what is the use of bean managed and container managed with example?
how to create multithreaded program? : Java thread
Write an algorithm program in java for the following question.. 1) S is a set of integers.X is an integer obtained by sum of two digits in S. Write logic for whether or not the X is from the S. The time of algorithm should not exceed o(n logn).
What is the base class of all classes?
What is an abstract method in java programming?
Can you explain inner class.
Why array is used in java?
How does singleton class work?
How do you allocate memory to object?
describe synchronization in respect to multithreading? : Java thread
What is jar?
Is arraylist ordered in java?
Explain inheritance in java?
Why does java have two ways to create child threads?