Answer Posted / thiru.guru83@yahoo.com
yes
| Is This Answer Correct ? | 14 Yes | 1 No |
Post New Answer View All Answers
Why do we create public static method in java?
List the three steps for creating an object for a class?
What is connection class in java?
What is navigable map 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 can we create a synchronized collection from given collection?
What is the purpose of the System class?
How can we create objects if we make the constructor private ?
who can i handle multiple client in RMI
What are Normalization Rules? Define Normalization?
How many bytes is string in java?
Say any two properties in beans?
What is a variable simple definition?
What is enhanced loop in java?
What are format specifiers in java?