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 |
Can we override final method?
Which class has no duplicate elements?
What is the purpose of using javap?
Explain numeric promotion?
What is singleton math?
What is basic concept of static in java ?
What is difference between string and new string?
Why are pointers not secure?
How to reverse a string in java?
What is lazy programming?
What is a singleton class in Java? And How to implement a singleton class?
What is the difference between a factory and abstract factory pattern?