What is the difference between java and .Net?
Answer Posted / musaid ali
.Net is frame work by Microsft which support many languages
such as VB,VC++,C#,ASP(web application) and the main point
is that .Net have its own compiler relative to each language
and we can create a New language in .NET,while java is a
programing language have its own methods.
Is This Answer Correct ? | 10 Yes | 0 No |
Post New Answer View All Answers
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.
How do you achieve polymorphism in java?
Explain parallel processing in java8?
How do you escape a string?
Explain exception chaining in java?
Explain polymorphism citing an example.
Explain about core java?
What is data structure in java?
Write a java program to check if a number is prime or not?
what is aggregation in java?
Explain 5 io best practices?
Why are data types important?
What is variable and constant explain with example?
What is stringreader?
How do you add an element to an arraylist in java?