why java is better then .net?

Answer Posted / mohankrishnareddy.n

1.JAVA is a platform independent where as .net is a
partial plarform dependent.ie jvm generates the Byte code
which is runnable on any flatform.
2.JAVA provides high security compared to .net

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How do you reverse sort a list in java?

505


Explain the difference between arraylist and linkedlist in java?

482


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.

1580


What does a method signature consist of?

505


What classes of exceptions may be caught by a catch clause in java programming?

696






What is nan inf?

501


What is the full form of jpeg?

511


Can we overload the methods by making them static?

498


Where is singleton pattern used?

520


How do you get length in java?

553


How do you clear an arraylist in java?

491


What is final modifier?

556


What is a "pure virtual" member function?

594


Differentiate between nested and inner class in java.

546


How is Object Oriented Programming different from Procedure Oriented Programming?

587