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
What are actual parameters?
How to restrict a member of a class from inheriting by its sub classes?
Explain about instanceof operator in java?
What is floating data type?
What is a parameter in simple terms?
What is import java util arraylist?
Can we assign null to double in java?
What does .equals do in java?
Is java util list serializable?
Can I import same package/class twice?
Can we use different return types for methods when overridden?
What is collection sort in java?
What is a function argument in java?
Does sprintf allocate memory?
What are the different types of constructor?