LINKEDLIST Q3 Flashcards

1
Q

What is the output of the following code:

LinkedList cars = new LinkedList(); cars.add(“Volvo”); cars.add(“BMW”); System.out.println(cars);?

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

A

D.) [Volvo, BMW]

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

Which of the following methods retrieves the first element of a LinkedList?

peekFirst()
first()
getFirst()
head()

A

getFirst()

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

What interface do both ArrayList and LinkedList implement?

Collection
List
Set
Map

A

List

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q
  1. Which method would you use to check if a LinkedList is empty?

length()
size()
checkEmpty()
isEmpty()

A

isEmpty()

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

When should you prefer using an ArrayList over a LinkedList?

-When you need to maintain order of insertion
-When you need to store large amounts of data
-When you need to access elements randomly
-When you need to frequently add and remove elements

A

When you need to access elements randomly

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

Which method would you use to remove the last item from a LinkedList?

removeLast()
pop()
removeFirst()
deleteLast()

A

removeLast()

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

Which of the following is a method to retrieve the last element of a LinkedList?

getLast()
last()
end()
peekLast()

A

getLast()

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

Which method would you use to remove the last item from a LinkedList?

removeLast()
pop()
removeFirst()
deleteLast()

A

removeLast()

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

What is the primary purpose of the LinkedList class in Java?

A.) To store data in a fixed-size array
B.) To provide a collection that can contain many objects of the same type
C.) To create a multi-dimensional array
D.) To implement a stack data structure

A

B.) To provide a collection that can contain many objects of the same type

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

How does the LinkedList class store its items?

A.) In a single continuous block of memory
B.) In containers linked to each other
C.) In a hash table
D.) In a binary tree structure

A

B.) In containers linked to each other

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

What is the main advantage of using a LinkedList over an ArrayList?

A.) Faster access to random elements
B.) More efficient for adding and removing elements
C.) Less memory usage
D.) Easier to implement

A

B.) More efficient for adding and removing elements

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

Which method is NOT part of the LinkedList class?

push()
clear()
remove()
add()

A

push()

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

Which method is used to add an item to the beginning of a LinkedList?

prepend()
addFirst()
insert()
addLast()

A

addFirst()

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

Which of the following methods can be used to clear all elements from a LinkedList?

clear()
removeAll()
deleteAll()
reset()

A

clear()

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