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 can we make a class virtual?
What is a method vs function?
How many bits is a boolean?
What is the default value of byte datatype in java?
Which category the java thread do fall in?
What is the symbol for line break?
What are the important features of Java 11 release?
What is flush buffer?
How does arrays sort work in java?
Are static members inherited to sub classes?
What is an anonymous class in java?
What is the maximum size of array in java?
What are keywords in java?
What is operator overloading. Is it is supported in java?
What is the difference between == and === javascript?