Explain about arraylist?
Answer / Deepak Goswami
Arraylist in Java is a dynamic array-like data structure that resides inside the ArrayList class. The ArrayList class implements the List interface and extends AbstractList class. An ArrayList can store any type of data (objects), similar to an array, but its size can grow or shrink as needed.nAn ArrayList allows duplicates and null elements, maintains insertion order, and does not guarantee that the elements are stored contiguously in memory. It provides several methods for adding, removing, accessing, and sorting data.
| Is This Answer Correct ? | 0 Yes | 0 No |
what is d difference between deep cloning and shallow cloning in core java?
What is Exception handling in Java How do you handle run time errors please explain with an example
Can we cast any other type to boolean type with type casting?
Which collection object is faster to retrieving the data and inserting the data into it.
2 Answers Jamcracker, Virtusa,
What are actual parameters?
Explain reverse a linked list recursive java solution?
Why is multithreading important?
What is casting in java programming?
Write a program to reverse array in place?
What is the use of callablestatement?
Is boolean a wrapper class in java?
What do you understand by the bean persistent property?