Answer Posted / ysr
Array list implements Cloneable, Collection, List,
RandomAccess, Serializable
Interfaces. So no need to implement the serialized
interface.
| Is This Answer Correct ? | 21 Yes | 1 No |
Post New Answer View All Answers
Is it possible to compare various strings with the help of == operator?
What is valid keyword in java?
Can final class have constructor?
What is difference between local variable and global variable?
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 sort words in java?
Which sorting is used in arrays sort in java?
What are triggers in DB? Explain their types. How do they work?
What is function and its uses?
Highest level event class of the event-delegation model?
What is difference between call by value and call by reference?
What is the difference between == and === javascript?
What is string in java with example?
How many decimal places is a double?
Is hashset ordered?