Why Java is called as purely platform independent..?
Explain briefly..dont Give regular answers
Explain with your own example..?
Answer Posted / satishkumar vishwakarma
The java is platform independed because of its bytecode.
When we compile our source file it is converted into .class
file. This .class file containts bytecode which is executed
by JVM whih is a runtime environment for java. Now
this .class file can be run in any environment with the
help of jvm. and jvm convert bytecode into native code.
That's why java is called platform independed.
Is This Answer Correct ? | 96 Yes | 9 No |
Post New Answer View All Answers
How is java created?
Can one thread block the other thread?
What are the differences between throw and throws?
How do you identify independent and dependent variables?
I want to re-reach and use an object once it has been garbage collected. How it's possible?
Can a singleton class be inherited?
Can private members of a base class are inheritable justify?
Where are the local variables stored?
Can a private method of a superclass be declared within a subclass?
How can we create objects if we make the constructor private ?
How do you sort words in java?
How do you read a char in java?
What is a loop java?
What is the need of transient variables in Java ?
What is a variable simple definition?