What is the difference between java and .Net?

Answer Posted / musaid ali

.Net is frame work by Microsft which support many languages
such as VB,VC++,C#,ASP(web application) and the main point
is that .Net have its own compiler relative to each language
and we can create a New language in .NET,while java is a
programing language have its own methods.

Is This Answer Correct ?    10 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

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


How do you achieve polymorphism in java?

726


Explain parallel processing in java8?

906


How do you escape a string?

732


Explain exception chaining in java?

843


Explain polymorphism citing an example.

812


Explain about core java?

865


What is data structure in java?

737


Write a java program to check if a number is prime or not?

768


what is aggregation in java?

774


Explain 5 io best practices?

807


Why are data types important?

776


What is variable and constant explain with example?

771


What is stringreader?

713


How do you add an element to an arraylist in java?

713