+ 1
Difference between portability and platform independence
2 Réponses
+ 20
Portability : Portable means that you can recompile the source code of a program to a platform-specific executable without changing the source code itself; you just need to compile it.
Platform Independence : Taking the compiled code (.class ) file and run on another Os without any recompilation.
+ 1
thanks