What is the difference between java and .Net?
Answer Posted / gopal reddy v
.Net is a framework for which you compile a program, e.g. you could write a C++ or C# program and compile it to a .Net executable. As long as your Windows or Linux machine has a .Net runtime you can execute your compiled program. In this sense, .Net is both language and platform independent. Java is in many ways similar to .Net except that there is a single programming language (Java). .Net seems to have a much brighter development future than Java both for desktop and Web development via ASP.Net and Silverlight.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are predefined functions?
What is purpose of keyword void?
What is meant by oops concept in java?
In Java list the methods that can be overridden?
Write down program for following scenario. Use java coding standard. You have array list with some words in it..we will call it as dictionary….and you have a arbitrary string containing some chars in it. You have to go through each word of dictionary and find out if that word can be constructed with the help of chars from arbitrary string given. If you find the word print it else print none.
What is finally block?
What is the multi-catch block in java?
Explain aggregation in java?
What happens when I use / and % with a negative numerator?
Can bool be null?
What is pojo class in java?
why Java does not support multiple inheritances?
what do you mean by classloader?
What is the Difference between Final Class && Abstract Class?
Can you inherit a constructor java?