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
How do you declare a string variable?
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.
What is tcp ip in java?
Is main an identifier?
What do you mean by a JVM?
Where to store local variables?
What is number data type?
What do you mean by platform independence? What is an interface?
Why we do exception handling in java and how many types of exceptions are there?
How many days will it take to learn java?
How do you sing an Applet ?
Is cout buffered?
What is better - 'bit-shift a value' or 'multiply by 2'?
What is difference between path and classpath in java?
Should you use singleton pattern?