what are the difference between Java and .Net?

Answer Posted / uday kumar

Java does not support multiple inheritance and .NET
supports multiple inheritance.
Java platform independent and .NET is not....

Is This Answer Correct ?    3 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Whats the difference between notify() and notifyall()?

656


Explain why wait(), notify() and notifyall() methods are in object class rather than in the reading class?

657


What is meant by javabeans?

718


What if the main() method is declared as private? What happens when the static modifier is removed from the signature of the main() method?

796


What is the difference between processes and threads?

625






What is an eror in java?

644


What do you mean by jjs in java8?

641


why an outer class cannot be declared as private?

3732


Does list maintain insertion order java?

614


How to change value in arraylist java?

599


whar are the draw backs of programming lang step by step in Clang and next in C++ and next and in Java nad in .Net

1755


What is the console in java?

766


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.

1693


how to one war file class to another war file class?

1641


What is core java used for?

621