What is the difference between java and .Net?
Answer Posted / reddy
what we simlpy say is .net is a framework, which consist of
languages(c++,c#,vb.net,j# etc) as well as technologies
(asp.net etc) with platform independent.where as java is
progamming language with technology it self. java is also
platform independent.
Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
How we can generate random numbers in java?
What is instance synchronization?
List types of storage classes in java?
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.
Why is it called buffering?
What is a class in java?
Is arraylist ordered?
What is lambda expression in java?
What is a singleton factory?
How do you declare an array in java?
What is the difference between heap and stack memory?
What is a databasemetadata?
What is java life cycle?
How does a for loop work java?
Is it correct to say that due to garbage collection feature in java, a java program never goes out of memory?