Big Idea 3: Algorithms and Programming

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/10

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

11 Terms

1
New cards

Variable

A named storage location in a program that holds a value.

2
New cards

Assignment

Setting or updating the value of a variable (e.g., x ← 5).

3
New cards

Conditional (If/Else Statement)

A command that performs different actions based on whether a condition is true or false.

4
New cards

Loop (Iteration)

A way to repeat a set of instructions while a condition is true or for a certain number of times.

5
New cards

Boolean

A data type that has only two possible values: true or false.

6
New cards

List (Array)

An ordered collection of items that can be accessed by index.

7
New cards

Index

The position of an item in a list, usually starting from 1 in AP Pseudocode.

8
New cards

Traversal

Accessing each item in a list one by one, often using a loop.

9
New cards

Return Value

The output that a function gives back when called.

10
New cards

Procedure Call

The act of executing a named procedure or function.

11
New cards

Simulation

A program that models real-world behavior or processes.