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 Quizizz
14 questions
Python Programming L1 Quiz

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

Quiz
•
7th - 12th Grade
14 questions
Gatorade Flavors

Quiz
•
10th - 12th Grade
10 questions
List 2

Quiz
•
12th Grade
10 questions
list 7

Quiz
•
12th Grade
10 questions
Tuples 4

Quiz
•
12th Grade
15 questions
2D Arrays

Quiz
•
9th - 12th Grade
15 questions
Loops and Lists and Arrays

Quiz
•
9th - 12th Grade
Popular Resources on Quizizz
15 questions
Character Analysis

Quiz
•
4th Grade
17 questions
Chapter 12 - Doing the Right Thing

Quiz
•
9th - 12th Grade
10 questions
American Flag

Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension

Quiz
•
5th Grade
30 questions
Linear Inequalities

Quiz
•
9th - 12th Grade
20 questions
Types of Credit

Quiz
•
9th - 12th Grade
18 questions
Full S.T.E.A.M. Ahead Summer Academy Pre-Test 24-25

Quiz
•
5th Grade
14 questions
Misplaced and Dangling Modifiers

Quiz
•
6th - 8th Grade
Discover more resources for Other
17 questions
Chapter 12 - Doing the Right Thing

Quiz
•
9th - 12th Grade
30 questions
Linear Inequalities

Quiz
•
9th - 12th Grade
20 questions
Types of Credit

Quiz
•
9th - 12th Grade
20 questions
Taxes

Quiz
•
9th - 12th Grade
17 questions
Parts of Speech

Quiz
•
7th - 12th Grade
20 questions
Chapter 3 - Making a Good Impression

Quiz
•
9th - 12th Grade
20 questions
Inequalities Graphing

Quiz
•
9th - 12th Grade
10 questions
Identifying equations

Quiz
•
KG - University