InterviewSolution
Saved Bookmarks
| 1. |
Why Java is a platform independent? Explain |
|
Answer» By being platform independent, we mean that the java source code can be run on all OS. The PRESENCE of a machine independent code CALLED Byte Code, which once compiled, can be run on any platform, makes Java platform independent. The compiler feature in Java CONVERTS or translates the high-level language into a common format understood by all the machines. The only REQUIREMENT is the AVAILABILITY of JVM. |
|