JVM is platform independent or depeneded?
Answers were Sorted based on User's Feedback
Answer / manoj kumar sahu(secon pvt.ltd
jvm is platform depended.every operating system has their own
jvm.one os jvm is different from other os.due to JVM Platform
depended so java is platform independed.
| Is This Answer Correct ? | 10 Yes | 1 No |
According to java all the class files contains only
bytecode. when we are trying to run the class files we need
jvm. so jvm is dependent on os. B'coz these byte code will
convert/translate into machine level code, where OS is able
to understand that language. So depending on the OS, we have
to use the supported JVM.
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / anjani kumar jha
JVM is plateform dependent because it is written in c,and u
can see this JVM BEHAVIOUR when u r dealing with
multithreading programming.
Thanks and Regards
Anjani Kumar Jha
9405580655
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / qim2010
JVM is platform dependent. There can be any number of jvm's
but they all understand the one common language called byte
code and translates them into the binary executable of a
particular platform for which they are developed.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ankit chauhan
ya java hi platform independent language bcoz in java there is a facility to translate source code to byte code due to byte code it is possible to run java application to any platform thats why java is called platform indipendent
| Is This Answer Correct ? | 0 Yes | 2 No |
Can you declare the main method as final?
Is alive method in java?
Q) I have a ArrayList object, in that object i have added 5 integer values, 5 float values, 5 string values. Now question is how can delete particular type of data ( i.e all int values or all float values or string values) in that list object at a time?
When is the finalize() called? What is the purpose of finalization?
What is the arguement of main method?
Can we have multiple public classes in a java source file?
Features of JAVA ? In which version of java synchronizedXXX() methods are included in Collections class.
When is the arraystoreexception thrown?
Explain the difference between string, stringbuffer and stringbuilder in java?
Which of the following can be referenced by a variable? A. The instance variables of a class only B. The methods of a class only C. The instance variables and methods of a class
I want my class to be developed in such a way that no other class (even derived class) can create its objects. Define how can I do so?
Which java collection does not allow null?