is JVM platform dependent or independent..?
Answer Posted / ravi
Java "the language" is platform-independent. To make it so,
there is a platform-specific JRE that knows how to run the
platform-independent Java code on a specific platform.
The JVM could be called platform-independent because it
produces the same results running the same Java code on
different platform(). It is however (at least partially)
implemented as a platform-dependent executable.
Is This Answer Correct ? | 44 Yes | 36 No |
Post New Answer View All Answers
Is java same as core java?
how does the run() method in runnable work? : Java thread
What is thread life cycle in java?
What do you mean by mnemonics?
What is the difference between an if statement and a switch statement?
When is an object subject to garbage collection?
Can we use a default constructor of a class even if an explicit constructor is defined?
What is e in java?
What is the inheritance?
Explain the selection sort algorithm and state its time complexity?
What is the difference between equals() and?
What is a war file?
Can a final variable be manipulated in java?
What is the synchronized method modifier?
What is volatile data type?