what is the diffrences between platform independent and
portable
Answers were Sorted based on User's Feedback
Answer / ramanuj kumar
As far as these difference concerns,
portable means : you can take bytecode ( .class file name
)from one machine to another machine & can run & use it for
further purpose.
plateform independance: you can use any operating system for
java.
| Is This Answer Correct ? | 31 Yes | 5 No |
Answer / bharathi
portable means that you can take the sourcecode and compile
it on another platform (or at least make it compile with
only some small changes).
platform independent means that you can take your program
and run it on another platform without any further effort.
| Is This Answer Correct ? | 31 Yes | 10 No |
Answer / saikumar
Platform independent means the any program written on one operating system and its run on other operating system without any changes in the program is called platform independent.
portable means the process of caryying one place to other place is known as portable.
| Is This Answer Correct ? | 5 Yes | 3 No |
Answer / veeranji
PLATFORM INDEPENDENT:WRITE ONES RUN ANY WHERE(WORA)
PORTABLE:WE CAN EASILY TRANSPORTED ONE SYSTEM TO ANOTHER SYSTEM
| Is This Answer Correct ? | 1 Yes | 4 No |
When object is created and destroyed?
Explain oops concepts in detail?
What is the difference between a static and a non-static inner class in java programming?
What is the return type of a program?s main() method?
Why is an interface be able to extend more than one interface but a class can’t extend more than one class?
What is java jit compilers?
Why java does not supports multiple inheritance?
What does jre stand for?
What is the function of compareto in java?
How do you execute a thread in java?
Why do we need autoboxing in java?
Can we override private methods?