InterviewSolution
Saved Bookmarks
| 1. |
What do you mean by platform independent and portable in java |
|
Answer» compile your Java code then .class file is generated by JAVAC compiler these CODES are readable by JVM and every operating system have its own JVM so JVM is platform dependent but due to JVM java LANGUAGE is BECOME platform independent._____________________________________________________It means that you can run Java bytecode on any hardware that has a compliant JVM. It doesn't mean that ME is the same as SE is the same as EE. EE has EJBs, but SE and ME don't. |
|