What is the difference between java and .Net?
Answer Posted / aman
1->java is devloped by sun micro system while .net is
devlopped by microsoft corporation.
2-> java is a language which is more plateform independent
while .net is a technology which support multiple languages
and less plateform independent.
3-> in java source code is converted into bytecode by jvm
(java virtual machine) while in .net source code is
converted into msil(microsoft intermediate language) code.
4->java doesn't use pointer where .net use pointer.
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What are assembly attributes?
Is null a string in java?
What are the differences between heap and stack memory?
we have syntax like for(int var : arrayName) this syntax is to find whether a number is in the array or not.but i want to know how to find that number's location.
What is jagged array in java?
What do you understand by synchronization?
Is string a class in java?
What is the preferred size of a component in java programming?
What happens when heap memory is full?
How a string is stored in memory?
For ease of programming you can consider the maze as a 2D array with colors represented by below integer and characters (in capital letters). • B - Black • W -White • G- Green • R- Red R B W B W W W W W W B W B B W W W W W W W B W B W W W B W W W W B B W W W B W W W B W W B B B B W B W B W W B W W W B W W W B B B W W B W W W B W W B W B W W W B W B W W W W B B W W W W B W W W W W G Shortest Route Problem: • Solution that finds the shortest Route between Red and Green White will have 1 Weight. Red and Green carry no weights. Shortest path is the path with less weight when you add up the weights in the path.
What are the two ways in which thread can be created?
What is a parameter example?
how to know the total memory occupied by the objects in the ArrayList(Array list may contain duplicate objects)
Does string is thread-safe in java?