where lives in jvm
Answers were Sorted based on User's Feedback
Answer / ajay yadav
JVM lives in the topmost layer of the Operating System.
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / srinu
JVM lives on Topmost layer operating system.every operting
system contain its own JVM
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / guru tata
JVM Is an architecture specification for converting the source code to machine understandable code, it was basically developed on c language, it invoked when the source code need to be executed, it is architectural neutral works on any platform, it work along with the system software.
| Is This Answer Correct ? | 0 Yes | 1 No |
What is a J2EE component? List out all the component?
How you can force the garbage collection?
What is comparator in java?
How java uses the string and stringbuffer classes?
abstract class Demo { public void show() { System.out.println("Hello I am In show method of Abstract class"); } } class Sample extends Demo { public void show() { super.show(); System.out.println("Hello I am In Sample "); } } public class Test { public static void main(String[] args) { //I WANT TO CALL THE METHOD OF BASE CLASS IT IS POSSIBLE OR NOT CAN WE USE SCOPE RESOLUTION OPERATOR TO CALL OR JAVA NOT SUPPORTED THAT :: OPERATORE } }
What do you mean by light weight and heavy weight components?
What is run-time class and system class? what is their purpose?
Do you know why doesn't the java library use a randomized version of quicksort?
What is the base class of all classes?
What is the use of parse function in java?
What is the primitive type byte?
What is the difference between yielding and sleeping?