What is the difference between java and .Net?

Answer Posted / dr. mahesh sanadya

(1)java is a language but .net is not a laguage. .net is a
framework which support multiple lanuage to devlop the
application.
(2).net is product of Microsoft but java is product of the
sun.
(3)every operating system support java and allow to run
progam, but .net is supported by only windows/IIs.
(4)Java is highly platform independent, but .net is
primarly for windows
(5).net use concept that "use any language(vb,C#,Vc++,Asp)
and run on .net platform but java is based on concept that
made program in java and run any platform

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How do you declare a string variable?

773


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.

1848


What is tcp ip in java?

841


Is main an identifier?

792


What do you mean by a JVM?

863


Where to store local variables?

823


What is number data type?

801


What do you mean by platform independence? What is an interface?

817


Why we do exception handling in java and how many types of exceptions are there?

821


How many days will it take to learn java?

732


How do you sing an Applet ?

2263


Is cout buffered?

913


What is better - 'bit-shift a value' or 'multiply by 2'?

947


What is difference between path and classpath in java?

735


Should you use singleton pattern?

737