what is platform independence in java?
Answers were Sorted based on User's Feedback
Answer / vishwnath patil
this means byte code of java class that run on any
destributed environment.
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / suresh
Once the java code is compiled, it can be run on any
hardware platform that has java interpreter ported on it.It
means, the compiled code can be run on any platform.
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / rajesh
compiled code of a program should be executed in any
operating system irrespective of the operating system in
which that code had been generated .This concept is called
platform in dependency
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / pramod pawar
Compile once , but run anywhere in short...
is the meaning of platform independence in java...
once we have compiled the program(java.c) its object file
(bytecode) can be created..and that byte-code we can run on
any machine independent of O.S.therefore it is platform
independence.....
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / b.subba rayal
Once the java code is compiled, it can be run on any
hardware platform that has java interpreter ported on it.It
means, the compiled code can be run on any platform.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the default value of the local variables?
Can a final method be overloaded?
can we create a instance for intwerface?
What does localhost mean?
What exactly is a .class file?
What is Collection interface?
Can a class be defined inside an interface?
What does %4d mean in java?
Can a constructor have different name than a class name in java?
What are java methods?
What is the difference between procedural and object-oriented programs?
The following program is Overloading or Overriding? public class PolymorphismEx { public int sampleMethod(int a) { return a; } public String sampleMethod(int a) { return "Is it Overloading or Overriding???"; } }
4 Answers Ness Technologies, TCS,