Is it true the JAVA is realy a plateform indepandent?

No, because Java does not support multiple inheritance directly.

Showing Answers 1 - 16 of 16 Answers

Devidas Sonawane

  • Nov 9th, 2005
 

Java is a platform independent but it has some drawback it is not thread independent and garbage collection independent because of that drawback we are not able to controll some real life applications like to controll plane, to controll nuclear power station etc.

  Was this answer useful?  Yes

dilipiyer

  • Jan 28th, 2006
 

Yes, Java does achieve platform independence. It uses Java Virtual Machine (JVM) to read the byte code. So all we need to run a java program is JVM.

  Was this answer useful?  Yes

umasank

  • Feb 17th, 2006
 

Correct, Java code is Platform independent, but only prerequiste is that we should have a JVM for that Platform

Andy

  Was this answer useful?  Yes

krishnaraj

  • Feb 26th, 2006
 

yes, java has purely plotform independent thats why we write a code to Jvm. that will manage the os

  Was this answer useful?  Yes

Sudhakar Chavali

  • Mar 22nd, 2006
 

Hi,Java Language is platform independent at ceratin areas only. Though we try to write JVMs for various devices, we can't control some of functionalities that is the reason we still do not see Java Based applications in some of Operating Systems.RegardsSudhakar Chavali

  Was this answer useful?  Yes

saumendra11

  • Aug 16th, 2006
 

In all case java is platform independatant,except when java use native methods, white jni ,concept 

  Was this answer useful?  Yes

vasu

  • May 2nd, 2007
 

No java is not platform independent it looses platform-independeny in 3 cases

1. while using threads
2. while using AWT components
3. while using native methods

also one more question
we know java looses platform independency while running as threads
but we also knew that in java evry application run as a thread then how can we consider java as a platform-independent language?

  Was this answer useful?  Yes

Basil

  • Sep 14th, 2007
 

JAVA is platform independent. It means it can run in any platform. The thing is that  the platform should have capability to run class file. The class file organised as it can run in any platform. Thread and other stuff mentioned are concept.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions