+ 4
Is Portable,Architecture Neutral & Plateform Independent has a same answer in java?If not please discuss.
2 Answers
+ 1
Hi, I don't understand your question very well, but yes, you can run the same Java code in any computer with the same version of Java installed.
Think about the Java code that you write as a plug. Every computer is a different "socket", but Java acts as an adapter. The Java installation is architecture and OS specific, but any Java program you make will be interpreted, so it is fully portable among computers with the same Java version.
Java is a semi compiled language. You compile the code but it is interpreted after that.
+ 1
thanx.