Which of the following methods is used to add an element at a specific index in an `ArrayList` in Java?

Exploring ArrayList Techniques and Strategies

Quiz
•
Other
•
12th Grade
•
Medium
Mouna Boutemine
Used 2+ times
FREE Resource
14 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
`addElement(int index, E element)`
`insert(int index, E element)`
`add(int index, E element)`
`put(int index, E element)`
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Consider an `ArrayList
`["apple", "blueberry", "cherry"]`
`["apple", "banana", "blueberry"]`
`["blueberry", "banana", "cherry"]`
`["apple", "cherry", "blueberry"]`
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which method would you use to remove all elements from an `ArrayList` in Java?
`clear()`
`removeAll()`
`deleteAll()`
`empty()`
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Given an `ArrayList
for (int i = 0; i < numbers.size(); i++) { System.out.println(numbers.get(i)); } ```
for (Integer num : numbers) { System.out.println(num); } ```
while (i<= numbers.size() -1 ) { System.out.println(number.get(i)); } ```
All of the above
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
If you want to check whether an `ArrayList` contains a specific element, which method would you use?
`containsElement(Object o)`
`has(Object o)`
`contains(Object o)`
`exists(Object o)`
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What will be the result of the following code snippet?
```java
ArrayList
`["apple", "banana", "cherry"]`
`["apple", "cherry"]`
`["banana", "cherry"]`
`["apple", "banana"]`
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which of the following statements about `ArrayList` is true?
`ArrayList` is synchronized.
`ArrayList` can store primitive data types directly.
`ArrayList` allows duplicate elements.
`ArrayList` has a fixed size.
Create a free account and access millions of resources
Similar Resources on Wayground
15 questions
Loops and Lists and Arrays

Quiz
•
9th - 12th Grade
14 questions
Python Programming L1 Quiz

Quiz
•
12th Grade
10 questions
ISIZULU - Isifundo 4

Quiz
•
1st Grade - University
10 questions
Fun with Food

Quiz
•
1st Grade - University
15 questions
39W Final Exam PLTW

Quiz
•
9th - 12th Grade
14 questions
Las Frutas - The Fruits

Quiz
•
7th - 12th Grade
15 questions
2D Arrays

Quiz
•
9th - 12th Grade
15 questions
JS 1

Quiz
•
12th Grade
Popular Resources on Wayground
25 questions
Equations of Circles

Quiz
•
10th - 11th Grade
30 questions
Week 5 Memory Builder 1 (Multiplication and Division Facts)

Quiz
•
9th Grade
33 questions
Unit 3 Summative - Summer School: Immune System

Quiz
•
10th Grade
10 questions
Writing and Identifying Ratios Practice

Quiz
•
5th - 6th Grade
36 questions
Prime and Composite Numbers

Quiz
•
5th Grade
14 questions
Exterior and Interior angles of Polygons

Quiz
•
8th Grade
37 questions
Camp Re-cap Week 1 (no regression)

Quiz
•
9th - 12th Grade
46 questions
Biology Semester 1 Review

Quiz
•
10th Grade