AP CSA Unit 7: ArrayList

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/12

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

13 Terms

1
New cards

ArrayLists

A mutable list of object references. We can create ArrayLists by using the constructor new ArrayList<E>().

2
New cards

ArrayList Methods

Methods used to alter the state of an ArrayList

3
New cards

Enhanced For Loop

A loop that is an alternate to a for or while loop that accesses each value in an array starting at the first value and proceeding in order.

4
New cards

ConcurrentModificationException

A common error that occurs when attempting to modify an ArrayList while using an enhanced for loop.

5
New cards

Traversing an ArrayList

Traversing an ArrayList is the process to loop through an ArrayList and access each of the elements. Caution must be taken to avoid looping beyond the valid index values.

6
New cards

Algorithm

An algorithm is a set of steps or rules to follow to solve a particular problem.

7
New cards

Simultaneously Traversal

Traversing two lists at the same time using the same index often to compare.

8
New cards

Linear Search

An algorithm that searches data sets in a sequential order, checking each value from the 0th index to the end of the data set to see what index a specific element can be located at.

9
New cards

Selection Sort

A sorting algorithm that swaps the minimum value left in an array with the current array index.

10
New cards

Insertion Sort

A sorting algorithm that shifts the already sorted section of an array to place the current array value in the correct index.

11
New cards

Network Protocols

Protocols for data sharing on the internet that define rules and conventions for communication between network devices.

12
New cards

Data Privacy

The appropriate use of data based on circumstances

13
New cards

Data Security

The integrity, confidentiality, and availability of data