Answer Posted / uday kumar
Java does not support multiple inheritance and .NET
supports multiple inheritance.
Java platform independent and .NET is not....
Is This Answer Correct ? | 3 Yes | 5 No |
Post New Answer View All Answers
Whats the difference between notify() and notifyall()?
Explain why wait(), notify() and notifyall() methods are in object class rather than in the reading class?
What is meant by javabeans?
What if the main() method is declared as private? What happens when the static modifier is removed from the signature of the main() method?
What is the difference between processes and threads?
What is an eror in java?
What do you mean by jjs in java8?
why an outer class cannot be declared as private?
Does list maintain insertion order java?
How to change value in arraylist java?
whar are the draw backs of programming lang step by step in Clang and next in C++ and next and in Java nad in .Net
What is the console 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.
how to one war file class to another war file class?
What is core java used for?