What is the use of collections in java? How it is
implemented in real time applications?
Answer Posted / srikanth reddy
they are used to store elements in java like arrays
ArrayList al=new ArrayList();
al.add("sri");
al.add(new Integer(99);
Is This Answer Correct ? | 7 Yes | 7 No |
Post New Answer View All Answers
What are triggers in DB? Explain their types. How do they work?
What is the syntax and characteristics of a lambda expression?
Does substring create a new object?
What is quick sort in java?
Do loops java?
What is array length?
Why volatile is used in java?
What is byte value?
What is the technique adopted to create an immutable class?
What is return null in java?
Explain the difference between intermediate and terminal operations in java8?
What is prefix of a string?
What will happen if there is a default method conflict as mentioned above and we have specified the same signature method in the base class instead of overriding in the existing class ?
What does s mean in regex?
What happens if we override only equals?