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 reverse a linked list recursive java solution?
What is string in java?
Tell me about your ability to work under pressure
What is a control variable example?
What is the point of polymorphism java?
What is a flag and how does it work?
What is the importance of finally block in exception handling?
What is instanceof keyword?
Is it correct to say that due to garbage collection feature in java, a java program never goes out of memory?
What is the difference between preemptive scheduling and time slicing in java programming?
How is Object Oriented Programming different from Procedure Oriented Programming?
How does hashset works in java?
Explain access specifiers?
What is the purpose of the finalize() method?
What is an immutable object?