Arraylist Q2 Flashcards

1
Q

Which of the following is NOT a method of the ArrayList class?

A.)delete()
B.)add()
C.)remove()
D.)clear()

A

A.)delete()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q
  1. What will the following code print? ArrayList cars = new ArrayList(); cars.add(‘RAIZE’); System.out.println(cars);

A.)Error
B.)[RAIZE]
C.RAIZE
D.)Π

A

B.)[RAIZE]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q
  1. What method is used to sort an ArrayList?

A.)organize()
B.)sort()
C.)order()
D.)arrange()

A

B.)sort()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Which of the following is true about ArrayList elements?

A.)They can only be primitive types.
B.)They can be of any object type.
C.)They must be of the same type.
D.)They cannot be null.

A

B.)They can be of any object type

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Which method clears all elements from an ArrayList?

A.)empty()
B.)deleteAll()
C.)clear()
D )removeAll()

A

C.)clear()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Which method is used to add an element to an ArrayList?

A.)append()
B.)add()
C.)insert()
D.)push()

A

B.)add()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Which method would you use to remove an element from an ArrayList?

A.)erase()
B.)discard()
C.)remove()
D.)delete()

A

c.)remove()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the correct way to loop through an ArrayList?

A.)for (int i = 0; i < list.length; i++)
B.)for (String item: list)
C.)for (int i: list)
D.)for (item in list)

A

B.)for (String item: list)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the output of the following code?

ArrayList cars = new ArrayList(); cars.add(‘BMW’);
cars.add(‘Ford’); cars.remove(0);
System.out.println(cars);

A.)[]
B.)[BMW]
C.)[Ford]
D.)[Ford, BMW]

A

C.)[Ford]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What does the size() method return?

A.)The type of elements in the ArrayList.
B.)The index of the last element.
C.)The maximum capacity of the ArrayList.
D.)The number of elements in the ArrayList.

A

D.)The number of elements in the ArrayList.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

How do you modify an element in an ArrayList?

A.)edit()
B.)change()
C.)set()
D.)update()

A

C.)set()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

How do you access the first element of an ArrayList named ‘cars’?

A.) cars[0]
B.) cars.get(1)
C.) cars.get(0)
D.) cars.first()

A

C.) cars.get(0)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Which of the following is a valid way to create an ArrayList of integers?

ArrayList numbers = new
ArrayList();
ArrayList numbers = new
ArrayList();
ArrayList numbers = new
ArrayList();
ArrayList numbers = new
ArrayList();

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is the main difference between a built-in array and an ArrayList in Java?

A.) Arrays can store objects only.
B.) ArrayLists can be resized dynamically.
C.) Arrays can be resized dynamically.
D.) ArrayLists can only store strings.

A

B.) ArrayLists can be resized dynamically.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly