What is the set interface in java programming?
No Answer is Posted For this Question
Be the First to Post Answer
Describe method overriding
Is it necessary for the port addresses to be unique? Explain with reason.
Is it possible to write static method in abstract class? justyfy your answer?
What is the difference between a synchronized method and a synchronized block?
Do you know thread pools?
What is a treeset in java?
how to compile jsp?
What is the exact difference in between Unicast and Multicast object ?
What is difference between array and vector?
explain the classification of exception and hoew to handle the exceptions
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.
Is break statement can be used as labels in java?