what do you meant by Platform-Independent?
Answers were Sorted based on User's Feedback
Answer / ranganathkini
Platform Independance means, generating executable code
independant of the underlying software/hardware platform on
which the code is required to run.
Java uses the concept of a Virtual Machine to abstract the
underlying hardware/software and providing a standard
execution environment for all Java bytecode based programs.
| Is This Answer Correct ? | 12 Yes | 2 No |
Answer / rohit jadhav
Platform-independent means a code which's execution does
not depend on platform.
A code which can be executed on any platform is called a
platform-independent code.
When a java program is compiled the JVM creates a . class
file which contains a byte-code in it and this byte-code
can be executed on any platform.
| Is This Answer Correct ? | 13 Yes | 3 No |
Answer / gaurang damley
It means compile once and execute anywhere
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / ravikiran
Platform-Independent means the code should be capable to
run on any platform
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / vasanthakumari.s
Platform Independance means, generating executable code
independant of the underlying software/hardware platform on
which the code is required to run.
Java uses the concept of a Virtual Machine to abstract the
underlying hardware/software and providing a standard
execution environment for all Java bytecode based programs.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / priyanka adam
because after compilation of java program it generates byte
code which can run on any platform that's why it is platform
independent.. while JVM is platform specific.
| Is This Answer Correct ? | 1 Yes | 0 No |
Is there is any difference between a scrollbar and a scrollpane?
List the features of java programming language.
suppose in a class there is a code like this: { Set hs=new Hashset(); hs.add(new Emp("kathy",1000)); hs.add(new Emp("kathy",2000)); } how can u avoid the above code in your class as set won't allow duplicate objects?
What are the differences between forwarding () method and sendredirect() methods?
How is string stored in java?
what is difference between Action messages and Action errors?
Write a program in java to create a doubly linked list containing n nodes.
Why do we override tostring method in java?
can any one tell me when do u go for inheritance and polymorphism
Explain inner classes ?
How can you eliminate duplicates?
How a string is stored in memory?