what is diffrence between .NET and java?
Answers were Sorted based on User's Feedback
Answer / veeramani
.net is related to only microsoft.It can be run in
microsoft only.It is platform dependent.whereas java is
platform independent i.e.,It can run on any OS
| Is This Answer Correct ? | 10 Yes | 3 No |
Answer / subhransu sekhar das
it is clear that .netis platform independent because it
cannot work on every operating system...and also database
connectivityis not facilated by .net but in case of
java ..it fullfills the the above two problem
| Is This Answer Correct ? | 3 Yes | 3 No |
What is yield () in java?
Java support what type of parameter passing ?
What are the data types supported by java? What is autoboxing and unboxing?
interface X{ void m1(); void m2(); } class Child2 extends Object implements X { public void m1(){ System.out.println("Child2 M1"); } public void m2(){ System.out.println("Child2 M2"); } } public class ParentChildInfterfaceDemo { public static void main(String[] args){ X x = new Child2(); X x1 = new Child2(); x.m1(); x.m2(); x.equals(x1); } } Will the above code work? If yes? Can you please explain why the code x.equals(x1) will work as the equals method is called on interface reference vaiable?
Do you need to import math in java?
Why there are some null interface in JAVA? What does it mean? Give some null interface in JAVA?
What is entry set in java?
write SQL command for table employee where print first name or last name start like "A" and who is working in domain(angular js,java,dotnet)
Define reflection.
Difference between serialization and deserialization in java?
what is struts-config-xml?and its use?
why we use merge option in hybernate pls give a ex snippet