JVM responsibility?

Answers were Sorted based on User's Feedback



JVM responsibility?..

Answer / chaitu

the main responsibilty of jvm(java virtual meachine) is to
conveting the .class file to related operating system .exe
which is executed by cpu..
jvm is platforum dpendent but java is platforum independent

Is This Answer Correct ?    28 Yes 3 No

JVM responsibility?..

Answer / harish

1)JVM converts the byte code into its equalent excutable
code.
2)It loads the excuteable code into memory(RAM).
3)Excutes this code through local OS.
4)Deletes the excutable code from RAM.

Is This Answer Correct ?    8 Yes 1 No

JVM responsibility?..

Answer / priyanka shetty

JVM'S main job is to load class files and execute the byte
codes they contain

Is This Answer Correct ?    3 Yes 1 No

JVM responsibility?..

Answer / guest

creation of compilation unit
secure access to system resources
running of bytecode
garbage collection

Is This Answer Correct ?    1 Yes 0 No

JVM responsibility?..

Answer / syed mudassir

jvm is a java virtual machine which has multiple tasks to
work on.
converting .class into exe code is one of the responsibility
of jvm

Is This Answer Correct ?    1 Yes 0 No

JVM responsibility?..

Answer / renuka reddy.

JVM(Java Virtual Machine):-
JVM plays a central role in making java portable.
when we write a code in java program the java
compiler converts the source code into bytecode (.class
file),after that JVM reads the bytecode and converts into
the machine understandable language.
Its just like the interpreter but the normal
interpreter is a platform dependent but JVM is a platform
independent.

Is This Answer Correct ?    4 Yes 8 No

Post New Answer

More Core Java Interview Questions

when everything can be done by static block then why do we use main method?.

2 Answers  


What is the use of generics? When was it added to the Java development Kit?

0 Answers   Impetus,


Why to give the file name same as the public class name in java?

3 Answers  


Is treeset sorted in java?

0 Answers  


can we create a instance for intwerface?

3 Answers  






What is regex in java?

0 Answers  


How do you break a loop?

0 Answers  


Define locale.

0 Answers  


What is difference between next () and nextline () in java?

0 Answers  


steps to connect with Oracle Databse using TYPE-2 Jdbc driver.

3 Answers  


From the two, which would be easier to write: synchronization code for ten threads or two threads?

0 Answers  


When should I use a singleton?

0 Answers  


Categories