Can vector have duplicates in java?
No Answer is Posted For this Question
Be the First to Post Answer
How Array List can be Serialized.
If I don't provide any arguments on the command line, then what will the value stored in the string array passed into the main() method, empty or null?
How do you find the maximum number from an array without comparing and sorting?
What is final method?
whst is encapsulation?when u encpsulate actually while devoloping code?
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.
What is a method in programming?
what is marker interface ? what is the necessity of it?
Which is bigger double or float?
What about interrupt() method of thread class ?
What are the parameters used in Connection pooling?
is there a separate stack for each thread in java? : Java thread