Why Java is called as purely platform independent..?
Explain briefly..dont Give regular answers
Explain with your own example..?
Answer Posted / ajeet pratap singh
we can say that java is logically platform independent but not technically because as jvm generates the byte codes i.e. .class files ,it is the necessary conditions for a purely platform independent language that the byte code which is generated by the jvm should run on any operating system without any mediator or converter but here interpreters are used to convert those codes acc. to the operating systems used and this is known as jre(java runtime environment). So java is logically platform independent but not technically
| Is This Answer Correct ? | 10 Yes | 3 No |
Post New Answer View All Answers
Can a constructor be private and how are this() and super() method used with constructor?
What are peerless components?
What is the common usage of serialization? What exceptions occur during serialization?
Why vector class is used?
Is main an identifier?
Explain why wait(), notify() and notifyall() methods are in object class rather than in the reading class?
What are the restrictions imposed on method overriding?
Can we use different return types for methods when overridden?
What is the technique adopted to create an immutable class?
what is the volatile modifier for? : Java thread
How do you sing an Applet ?
How hashmap works in java?
What is an immutable object? How do you create one in java?
What is identifier with example?
Can we have a method name same as class name in java?