is JVM platform dependent or independent..?
Answer Posted / vamsi
JVM refers Java Virtual Machine. JVM is a program which
will convert byte code instructions into machine language
instructions understandable by Micro processor. Java
program write once, later on run anywhere.
JVM is a system dependent, because it was developed in C
language, where as class file is a system independent.
Sun Microsystems has developed different JVMs for different
operating systems. Hence, you can write a single Java
program and generate the class file which can be executed
on any other operating system.
note# let us know if iam wrong.
| Is This Answer Correct ? | 126 Yes | 13 No |
Post New Answer View All Answers
Explain the private protected method modifier?
Define nashorn in java8.
What is the base class of all exception classes in java?
explain what is transient variable in java?
Is java good for beginners?
What is meant by null and void?
How to solve the problem of generating the unique hash keys with hash function?
Is it possible to override private or static method in java?
What is illegal identifier in java?
How do you convert an int to a string in java?
What causes memory leak in java?
Difference between comparator and comparable in java?
What are streams?
What is meant by 'bit masking' in java?
Does a class inherit the constructors of its superclass in java programming?