What is the difference between java and .Net?

Answer Posted / reddy

what we simlpy say is .net is a framework, which consist of
languages(c++,c#,vb.net,j# etc) as well as technologies
(asp.net etc) with platform independent.where as java is
progamming language with technology it self. java is also
platform independent.

Is This Answer Correct ?    0 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How we can generate random numbers in java?

884


What is instance synchronization?

826


List types of storage classes in java?

840


Draw a UML class diagram for the code fragment given below: public class StringApplet extends Applet { private Label sampleString; private Button showTheString; private ButtonHandler bHandler; private FlowLayout layout; public StringApplet() { sampleString = new Label(" "); showTheString = new Button (" Show the String"); bHandler = new ButtonHandler(); layout = new FlowLayout(); showTheString.addActionListener(bHandler); setLayout(layout); add(sampleString); add(showTheString); } class ButtonHandler implements ActionListener { public void actionPerformed(ActionEvent e) { samplestring.setText("Good Morning"); } } } Note: The methods need not be indicated on the diagram.

1828


Why is it called buffering?

835


What is a class in java?

802


Is arraylist ordered?

788


What is lambda expression in java?

732


What is a singleton factory?

736


How do you declare an array in java?

762


What is the difference between heap and stack memory?

894


What is a databasemetadata?

733


What is java life cycle?

769


How does a for loop work java?

786


Is it correct to say that due to garbage collection feature in java, a java program never goes out of memory?

831