AP CSA Unit 4: Iteration

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

1/8

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

9 Terms

1
New cards

Infinite loops

Occurs when the expression in a while loop never evaluates to false. The program continues to run infinitely.

2
New cards

break

Breaks out of a while loop and executes statements that immediately follow while loop.

3
New cards

return

Keyword used in methods to return a value back to the initial program that called the method.

4
New cards

Off by One Error

When a for loop iteration is off by one too many or one too few.

5
New cards

charAt(int index)

charAt(int index) returns the character at the specified index.

6
New cards

Nested Loops

When a loop is placed within another loop. The total number of runs for a nested loop will be the outer loop * inner loop.

7
New cards

Algorithm

Step-by-step process that solves a problem.

8
New cards

Statement execution count

The number of times a statement is executed by the program.

9
New cards

Big-O-Notation

A way to represent how long an algorithm will take to execute. It helps to determine how efficient different approaches to solving a problem are.