why java is better then .net?
Answers were Sorted based on User's Feedback
Answer / praveen kumar
Java was developed by sun microsystem,where .net was
developed by microsoft.Java is platform independent where
as .net is platform dependent.In java source code is
converted to ByteCode by JVM while in .NET code id
converted to MSIL(Microsoft Intermediate Language Code)by
the CLR supported by .NET..when compare to java
and .net ,.net is easily understood when compare to java.
Is This Answer Correct ? | 19 Yes | 4 No |
Answer / mohankrishnareddy.n
1.JAVA is a platform independent where as .net is a
partial plarform dependent.ie jvm generates the Byte code
which is runnable on any flatform.
2.JAVA provides high security compared to .net
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / pradeep g
As java is platform independence implements once run any
where,occupies less place on client machine
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / gopi
Java is opensource software where as .net is not a opensourse.
Java platform independent,.net platform dependent.
Is This Answer Correct ? | 0 Yes | 1 No |
Answer / chandu
java is not purely platform independent
but .net is purely platform dependent
in the views of platform=os+cpu
and jvm generates different .class files
Is This Answer Correct ? | 1 Yes | 10 No |
How is a variable stored in memory?
What is a boolean structure?
Can we access instance variables within static methods ?
explain the collection in java
Is there memory leaks in java?
4.1 Supply contracts (in the form of comments specifying pre- and post conditions) for the enqueue() method of the LinkedQueue class given in the Appendix. (2) 4.2 Let Thing be a class which is capable of cloning objects, and consider the code fragment: Thing thing1 = new Thing(); //(1) Thing thing2 = thing1; //(2) Thing thing3 = (Thing) thing1.clone(); //(3) Explain how the objects thing2 and thing3 differ from each other after execution of the statements. (
What is java regex?
String class is defined under which package in java?
What is a ternary operator in java? What is an interface?
What is a singleton in genetics?
How many static init can you have?
Can static method access instance variables ?